Stale #96
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 6 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| # ── Timing ────────────────────────────────────────────────── | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| days-before-pr-stale: 21 | |
| days-before-pr-close: 7 | |
| # ── Labels ────────────────────────────────────────────────── | |
| stale-issue-label: "stale" | |
| close-issue-label: "auto-closed" | |
| stale-pr-label: "stale" | |
| close-pr-label: "auto-closed" | |
| # ── Exempt labels (never marked stale) ────────────────────── | |
| exempt-issue-labels: "pinned,security,blocked,in-progress,area: contract" | |
| exempt-pr-labels: "pinned,security,blocked,in-progress,do-not-merge" | |
| # ── Messages ──────────────────────────────────────────────── | |
| stale-issue-message: > | |
| This issue has been inactive for 30 days. It will be closed in 7 days | |
| unless there is further activity. If this issue is still relevant, please | |
| leave a comment or remove the **stale** label. | |
| close-issue-message: > | |
| This issue has been automatically closed after 37 days of inactivity. | |
| If the problem persists, please open a new issue with up-to-date context. | |
| stale-pr-message: > | |
| This pull request has been inactive for 21 days. It will be closed in | |
| 7 days unless there is further activity. Please rebase, address review | |
| comments, or leave a note if you need more time. | |
| close-pr-message: > | |
| This pull request has been automatically closed after 28 days of | |
| inactivity. Please reopen or open a new PR if the change is still needed. | |
| # ── Safety ────────────────────────────────────────────────── | |
| operations-per-run: 100 | |
| remove-stale-when-updated: true |