Close stale issues and PRs #915
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 issues and PRs' | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: > | |
This issue is stale because it has been open 2 months with no activity. | |
**If this issue is still affecting you, please leave any comment** (for example, "bump"), and we'll keep it open, otherwise this will be closed in 10 days. | |
We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! | |
stale-pr-message: > | |
This pull request is stale because it has been open 90 days with no activity. | |
**If this pull request is still relevant, please leave any comment**, and we'll keep it open. | |
We are sorry that we haven't been able to prioritize reviewing it yet. Your contribution is very much appreciated. | |
close-issue-message: > | |
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you! | |
close-pr-message: > | |
Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you! | |
days-before-issue-stale: 60 | |
days-before-pr-stale: 90 | |
days-before-issue-close: 10 | |
days-before-pr-close: 20 |