Close stale issues #146
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 | |
on: | |
schedule: | |
# Once per day at midnight | |
- cron: "0 0 * * *" | |
permissions: | |
issues: write | |
jobs: | |
close-reproduction-missing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v8 | |
with: | |
days-before-stale: 7 | |
days-before-close: 0 | |
any-of-labels: reproduction-missing | |
stale-issue-message: "This issue has been automatically closed because it is missing a reproduction and there hasn't been any activity for 7 days. If the problem persists, please create a new bug report." |