Close stale issues #406
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: '0 0 * * *' | |
permissions: | |
issues: write | |
jobs: | |
stale: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: ForNeVeR/[email protected] | |
with: | |
days-before-stale: -1 | |
stale-issue-label: 'status:waiting-for-info' | |
remove-stale-when-updated: 'false' | |
days-before-close: 14 | |
close-issue-message: 'This issue was closed because it has been open for 14 days, but no requested information was received. Please leave a comment if you think this is a mistake.' |