Close stale PRs #164
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: | |
- uses: actions/stale@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: > | |
Automated Message: We're closing this issue because it hasn't been updated in a while. | |
This isn't a judgement on the merit of the issue in any way. It's just | |
a way of keeping the issue queue manageable. | |
If you'd like to revive this issue, please reopen it and ask a | |
committer to remove the Stale tag! | |
stale-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 Stale tag! | |
days-before-stale: 30 | |
days-before-close: 15 | |
stale-issue-label: 'stale-issue' | |
stale-pr-label: 'stale-pr' | |
exempt-issue-labels: 'awaiting-approval,work-in-progress' | |
exempt-pr-labels: 'awaiting-approval,work-in-progress' |