Close Stale Issues / PRs #104
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 / PRs' | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| close-issues: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v10.2.0 | |
| with: | |
| days-before-issue-stale: 14 | |
| days-before-pr-stale: 14 | |
| days-before-issue-close: 7 | |
| days-before-pr-close: 7 | |
| stale-issue-label: "stale" | |
| stale-pr-label: "stale" | |
| exempt-pr-labels: 'keep-open' | |
| exempt-issue-labels: 'keep-open' | |
| stale-issue-message: "This issue has been marked as stale and will be closed if no further activity occurs." | |
| stale-pr-message: "This pull request has been marked as stale and will be closed if no further activity occurs." | |
| close-issue-message: "This issue has been closed after being marked as stale because no further activity occurred." | |
| close-pr-message: "This pull request has been closed after being marked as stale because no further activity occurred." |