Mark stale PRs #5
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: Mark stale PRs | |
| on: | |
| schedule: | |
| - cron: '0 1 * * 3' # Every Wednesday at 1am UTC | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| stale-pr-message: 'Things seem to have gone quiet on this PR. There has been no activity for 60 days, so it will be closed in 14 days if there is still no movement.' | |
| close-pr-message: 'Closing due to inactivity.' | |
| days-before-pr-stale: 60 | |
| days-before-pr-close: 14 | |
| stale-pr-label: 'stale' |