Skip to content

Commit

Permalink
Add workflow that checks stale PRs (#1576)
Browse files Browse the repository at this point in the history
* stalecheck workflow

* Update .github/workflows/stalebot.yaml

---------

Co-authored-by: Joe Bowman <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
  • Loading branch information
3 people authored May 9, 2024
1 parent 447566a commit 3ceba2a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stalebot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Close stale pull requests"
on:
schedule:
- cron: "0 0 * * *" # run every day at midnight

permissions:
contents: read

jobs:
stale:
permissions:
issues: write # for actions/stale to close stale issues
pull-requests: write # for actions/stale to close stale PRs
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GH_PAT }}
stale-pr-message: >
This pull request has been automatically marked as stale because it
has not had any recent activity. It will be closed if no further
activity occurs. Thank you!
days-before-stale: -1
days-before-close: -1
days-before-pr-stale: 14
days-before-pr-close: 6
exempt-pr-labels: "keepalive"

0 comments on commit 3ceba2a

Please sign in to comment.