Label Stale Threads #961
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
# This is a daily cron job that will label stale issues and PRs over a certain age. | |
# This is to limit the amount of noise on older issues and to encourage new issues. | |
name: Label Stale Threads | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
label-stale-threads: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v7 | |
with: | |
days-before-stale: 90 | |
stale-pr-label: 'flag:stale' | |
stale-issue-label: 'flag:stale' | |
days-before-close: -1 |