Stale #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 | |
| on: | |
| schedule: | |
| - cron: "0 9 * * 1" # Every Monday at 09:00 UTC | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| stale-issue-message: > | |
| This issue has been inactive for 30 days. It will be closed in 7 days | |
| unless there is new activity. If this is still relevant, please comment. | |
| stale-pr-message: > | |
| This PR has been inactive for 30 days. It will be closed in 7 days | |
| unless there is new activity. Please rebase and update if still relevant. | |
| close-issue-message: "Closing due to inactivity. Reopen if still relevant." | |
| close-pr-message: "Closing due to inactivity. Reopen and rebase if still relevant." | |
| stale-issue-label: stale | |
| stale-pr-label: stale | |
| exempt-issue-labels: "pinned,security,in-progress" | |
| exempt-pr-labels: "pinned,security,in-progress" |