Close stale issues #202
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 | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 8 * * mon' | |
permissions: | |
issues: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-issue-message: 'This issue has been marked as stale because it has been open for more than 14 days with no activity. Remove stale label or comment, otherwise it will be closed in 7 days ' | |
stale-issue-label: 'status: stale' | |
close-issue-message: 'This issue has been closed becasue has been stale for more than 7 days. If you think this issue deserves some attention feel free to reopen it' | |
close-issue-label: 'conclusion: stale' | |
days-before-stale: 14 | |
days-before-close: 7 | |
days-before-pr-close: -1 | |
only-labels: 'status: waiting for information' | |
debug-only: false |