Close stale items #143
This file contains 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 items' | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
permissions: | |
issues: write # for actions/stale to close stale issues | |
pull-requests: write # for actions/stale to close stale PRs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
exempt-issue-labels: keep | |
stale-issue-message: > | |
This issue has been automatically marked as stale due to inactivity. | |
The resources of our volunteers are limited. | |
Bug reports must provide a script that reproduces the bug, using | |
our template. Feature suggestions must include a promise to build | |
the feature yourself. | |
Thank you for all your contributions. | |
stale-pr-message: | |
This PR has been automatically marked as stale due to inactivity. | |
The resources of our volunteers are limited. | |
If this is something you are committed to continue working on, | |
please address any concerns raised by review and/or ping us again. | |
Thank you for all your contributions. | |
days-before-stale: 90 | |
days-before-close: 7 |