Close stale issues and PRs #4993
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 and PRs" | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: "30 * * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
# yamllint disable-line rule:line-length | |
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days." | |
# yamllint disable-line rule:line-length | |
stale-pr-message: "This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days." | |
days-before-stale: 30 | |
days-before-close: 5 | |
exempt-issue-labels: will-fix |