Close stale issues #18
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: | |
- cron: '0 12 * * 0' # Every Sunday at 12:00 PM UTC | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
days-before-stale: 14 | |
days-before-close: 9 | |
days-before-pr-close: -1 # Never close PR's automatically | |
any-of-labels: 'question, invalid' | |
stale-issue-message: 'This issue did not receive an update in the last 4 weeks. | |
Please take a look again and update the issue with new details, | |
otherwise it will be automatically closed in 2 weeks. Thank you!' | |
exempt-all-pr-milestones: true |