Stale Issues #19
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: | |
| # Run daily at 00:00 UTC | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| jobs: | |
| stale: | |
| name: Manage Stale Issues | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Stale Issues | |
| uses: actions/stale@v9 | |
| with: | |
| stale-issue-message: > | |
| This issue has been inactive for 30 days. If it's a challenge proposal, | |
| please verify the external issue is still open and update this thread. | |
| If no activity occurs within 14 more days, this issue will be closed. | |
| close-issue-message: > | |
| This issue has been closed due to inactivity. If the challenge or proposal | |
| is still relevant, feel free to reopen or create a new one. | |
| days-before-stale: 30 | |
| days-before-close: 14 | |
| stale-issue-label: "status: stale" | |
| exempt-issue-labels: "status: open,status: claimed" | |
| operations-per-run: 30 | |
| # Do not manage PRs with this workflow | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 |