Close Stale Issues #5
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: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "30 1 * * *" | |
| jobs: | |
| close-issues: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| days-before-issue-stale: 3 | |
| days-before-issue-close: 2 | |
| stale-issue-label: "stale" | |
| stale-issue-message: "This issue has not received a response in 3 days. It will auto-close in 2 days unless a response is posted." | |
| close-issue-message: "This issue is now closed due to inactivity. Feel free to reopen it if the problem persists" | |
| operations-per-run: 100 | |
| exempt-issue-labels: announcement,bug,on hold,waiting for internal reply,feature, enhancement, owned by another team | |
| any-of-labels: more information required, |