Github Stale Issues Check #7
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: Github Stale Issues Check | |
on: | |
schedule: | |
- cron: '59 23 * * *' # Run every day just before midnight | |
jobs: | |
close_stale_prs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close stale issues | |
uses: actions/stale@v9 | |
with: | |
any-of-labels: 'Needs more info' | |
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Please comment on this issue otherwise it will be closed in 7 days.' | |
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' | |
days-before-issue-stale: 21 | |
days-before-issue-close: 7 |