Close issues that have been blocked for two weeks #1
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 issues that have been blocked for two weeks | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: {} | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
only-labels: 'blocked/needs-info,blocked/needs-repro' | |
labels-to-remove-when-unstale: 'blocked/needs-info,blocked/needs-repro' | |
days-before-pr-stale: 9001 # good luck to whoever leaves their PR up for 25 years |