Issue watcher #5
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: Issue watcher | |
on: | |
workflow_dispatch: | |
schedule: | |
# Date follows the cron syntax: https://en.wikipedia.org/wiki/Cron | |
# Every Monday at 6:30 AM | |
- cron: '30 6 * * 1' | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/stale@v9.0.0 | |
with: | |
days-before-issue-stale: 14 | |
stale-issue-message: "This issue has been labeled as stale because it has been for 14 days without any activity." | |
stale-issue-label: "stale" | |
days-before-issue-close: 14 | |
close-issue-message: "This issue has been closed because it has been for 14 days without any activity since labeled as stale." | |
any-of-issue-labels: "waiting for response,can't reproduce,invalid,wontfix,duplicate" |