This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
Close Stale Issues #29
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 | |
## Closes issues marked with 'more information required' label after 7 days | |
## if original poster does not respond within that time | |
permissions: | |
issues: write | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v5 | |
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 |