Close Stale Issues #723
This file contains 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 | |
permissions: | |
issues: write | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v7 | |
with: | |
stale-issue-label: stale | |
days-before-issue-stale: 7 | |
stale-issue-message: 'This issue has not received a response in 7 days. It will auto-close in 7 days unless a response is posted.' | |
operations-per-run: 100 | |
exempt-issue-labels: announcement,bug,on hold,waiting for internal reply,feature | |
any-of-labels: more information required |