Mark stale PRs #8
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 12 * * 1-5" | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v10 | |
| with: | |
| stale-issue-message: "This PR is stale because it has been open 21 days with no activity. If you would like this issue to stay open please leave a comment indicating how this issue is affecting you. Thank you." | |
| days-before-pr-stale: 14 | |
| days-before-issue-stale: -1 | |
| days-before-pr-close: 21 | |
| days-before-issue-close: -1 | |
| exempt-issue-labels: "pinned,security,bug" |