Stale Issues #4
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: Stale Issues | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 0' # Every Sunday | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| stale-issue-message: | | |
| This issue has been inactive for 60 days. It will be closed in 14 days if there's no activity. | |
| - If this is still relevant, please comment or update the issue | |
| - If you're working on this, add the `in-progress` label | |
| close-issue-message: 'Closed due to inactivity. Feel free to reopen if still relevant.' | |
| stale-issue-label: 'stale' | |
| days-before-stale: 60 | |
| days-before-close: 14 | |
| exempt-issue-labels: 'priority/critical,priority/high,in-progress,blocked' |