Skip to content

Commit

Permalink
Also expire PRs automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-helmich committed Apr 26, 2020
1 parent f0d78c2 commit 24b65c1
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,16 @@ jobs:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.githubToken }}
days-before-stale: 30

stale-issue-message: >
There has not been any activity to this issue in the last 30 days.
It will automatically be closed after 7 more days, if there is no activity.
It will automatically be closed after 7 more days. Remove the `stale` label to prevent this.
stale-issue-label: 'stale'
exempt-issue-label: 'confirmed'
days-before-stale: 30
exempt-issue-label: 'confirmed,help wanted'

stale-pr-message: >
There has not been any activity to this pull request in the last 30 days.
It will automatically be closed after 7 more days. Remove the `stale` label to prevent this.
stale-pr-label: 'stale'
exempt-pr-labels: 'awaiting-approval,work-in-progress'

0 comments on commit 24b65c1

Please sign in to comment.