Close stale PRs #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: Close stale PRs | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| days-before-pr-stale: 7 | |
| days-before-pr-close: 5 | |
| days-before-issue-stale: -1 | |
| days-before-issue-close: -1 | |
| stale-pr-message: > | |
| This PR has been inactive for 7 days and has been marked as stale. | |
| It will be closed in 5 days if there is no further activity. | |
| close-pr-message: 'Closed due to inactivity.' | |
| stale-pr-label: 'stale' | |
| exempt-pr-labels: 'pinned,work-in-progress,release' | |
| operations-per-run: 100 |