Close stale PRs #1210
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 PRs" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check stale PRs | |
uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-pr-message: > | |
Automated Message: This PR is being labelled as stale and will be closed in | |
next 15 days due to lack of activity. To avoid this push new commits or | |
ask the committers for a review/ resolution. | |
close-pr-message: > | |
Automated Message: We're closing this PR because it hasn't been updated in a while. | |
This isn't a judgement on the merit of the PR in any way. It's just | |
a way of keeping the PR queue manageable. | |
If you'd like to revive this PR, please reopen it and ask a | |
committer to remove the 'no-pr-activity' tag! | |
days-before-stale: 30 | |
days-before-close: 15 | |
stale-pr-label: 'no-pr-activity' | |
exempt-pr-labels: 'awaiting-approval,work-in-progress,wip' |