Close stale issues #176
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 stale issues' | |
| on: | |
| schedule: | |
| - cron: '50 18 * * *' | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| stale-issue-message: 'As there has been no activity on this issue for 30 days, I am marking it as stale. If you think this is a mistake, please comment below and I will remove the stale label.' | |
| close-issue-message: 'This issue has been closed due to inactivity. If you think this is a mistake, please comment below.' | |
| days-before-stale: 30 | |
| days-before-close: 5 | |
| stale-issue-label: 'stale' | |
| exempt-issue-labels: 'not-stale' |