Close stale issues and PRs #1071
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 and PRs" | |
| on: | |
| schedule: | |
| - cron: "30 5 * * *" | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| stale-issue-message: 'This issue had no activity for **30 days**. It will be closed in **2 weeks** unless there is some new activity. Is this issue already resolved?' | |
| stale-issue-label: 'stale' | |
| exempt-issue-labels: bug, enhancement, new feature, new dataset, good first issue, keep, completed | |
| exempt-pr-labels: bug, enhancement, new feature, new dataset, keep | |
| stale-pr-message: 'This pull request had no activity for **30 days**. It will be closed in **2 weeks** unless there is some new activity.' | |
| stale-pr-label: 'stale' | |
| days-before-stale: 30 | |
| days-before-close: 14 | |
| operations-per-run: 200 |