Stale PRs #181
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 PRs | |
| on: | |
| schedule: | |
| - cron: "0 6 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Mark and close stale pull requests | |
| uses: actions/stale@v9 | |
| with: | |
| days-before-pr-stale: 14 | |
| days-before-pr-close: 7 | |
| stale-pr-message: > | |
| This pull request has been marked stale due to inactivity. | |
| Please update it if you want it to stay open. | |
| close-pr-message: > | |
| Closing due to inactivity. Reopen with an update if still relevant. | |
| stale-pr-label: stale | |
| exempt-pr-labels: "pinned,security,ready-for-pr" | |
| days-before-issue-stale: -1 |