Stale PR Check #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: Stale PR Check | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
pull-requests: write | |
jobs: | |
stale-pr-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
stale-pr-message: 'This PR has been labeled as stale due to inactivity and will be closed in 7 days if no further activity occurs.' | |
close-pr-message: 'This PR has been closed due to inactivity. Feel free to reopen if you are still working on it.' | |
days-before-pr-stale: 30 | |
days-before-pr-close: 7 | |
stale-pr-label: 'stale' | |
exempt-pr-labels: 'in-progress' |