Close abandoned issues #26
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Close abandoned issues" | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v11 | |
| with: | |
| only-labels: 'needs-info' | |
| days-before-stale: 7 | |
| days-before-close: 7 | |
| stale-issue-message: 'This issue is missing required details and has been marked as stale. It will close automatically in 7 days unless updated.' | |
| close-issue-message: 'Closed due to inactivity and missing information.' | |
| stale-issue-label: 'stale' |