Stale #81
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 3 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| name: Mark and close stale items | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0 | |
| with: | |
| operations-per-run: 100 | |
| remove-stale-when-updated: true | |
| days-before-issue-stale: 60 | |
| days-before-issue-close: 14 | |
| stale-issue-label: stale | |
| stale-issue-message: > | |
| This issue has been inactive for 60 days. It will close in 14 days | |
| unless there's new activity. Comment, add more context, or apply an | |
| exemption label (e.g. `pinned`, `blocker`, `blocked`, `priority:p0`, | |
| `priority:p1`) to keep it open. | |
| close-issue-message: > | |
| Closing as stale. Reopen with new context if this is still relevant. | |
| exempt-issue-labels: >- | |
| pinned,blocker,blocked,priority:p0,priority:p1,spec-drift,tool-release | |
| days-before-pr-stale: 30 | |
| days-before-pr-close: 10 | |
| stale-pr-label: stale | |
| stale-pr-message: > | |
| This pull request has been inactive for 30 days. It will close in | |
| 10 days unless there's new activity. Push a commit, leave a comment, | |
| or apply an exemption label to keep it open. | |
| close-pr-message: > | |
| Closing as stale. Reopen and rebase if you want to continue. | |
| exempt-pr-labels: >- | |
| pinned,blocker,priority:p0,priority:p1,dependencies |