Close stale issues and PRs #201
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: Close stale issues and PRs | |
| "on": | |
| schedule: | |
| - cron: 42 4 * * 1-5 | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 | |
| with: | |
| days-before-stale: 63 | |
| days-before-close: 21 | |
| exempt-pr-labels: dependencies,security | |
| stale-issue-message: | | |
| Issue will be marked as stale because it has not been updated in a | |
| while. | |
| stale-pr-message: | | |
| PR will be marked as stale because it has not been updated in a | |
| while. |