Close stale issues and PRs #926
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: '0 0 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v4 | |
with: | |
days-before-stale: 31 | |
days-before-close: 0 | |
stale-issue-message: '' | |
stale-pr-message: '' | |
close-issue-message: 'Closing this issue because it has been awaiting a response from its author for more than a month. Please provide the requested information and this issue will be re-opened.' | |
only-issue-labels: 'blocked,awaiting-author' | |
only-pr-labels: 'Stale' |