Skip to content

Commit

Permalink
Add 'Stale PRs' GH action to label and close inactive community PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
cbbayburt committed Aug 16, 2023
1 parent af7c606 commit 23a8843
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Stale PRs
on:
schedule:
- cron: '0 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Label/close stale PRs
uses: actions/stale@v8
with:
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days.'
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'

# Stale after 60 days, close after further 10 days
days-before-pr-stale: 60
days-before-pr-close: 10

# Don't work on issues (only PRs)
days-before-issue-stale: -1
days-before-issue-close: -1

# Only consider 'community' PRs
only-labels: 'community'

# Delete its branch after closing a PR
delete-branch: true

0 comments on commit 23a8843

Please sign in to comment.