Skip to content

Commit

Permalink
chore: bump stale workflow to 60 days
Browse files Browse the repository at this point in the history
  • Loading branch information
jef committed Apr 9, 2021
1 parent cd6e1f6 commit 3c1419f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ on:
- cron: '0 0 * * *'
jobs:
stale:
name: Check stale issues
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- name: Run stale action
uses: actions/stale@v3
with:
close-issue-message: ${{ env.CLOSE_MESSAGE }}
close-pr-message: ${{ env.CLOSE_MESSAGE }}
days-before-stale: 30
days-before-close: 5
days-before-stale: 60
days-before-close: 10
exempt-issue-labels: ${{ env.EXEMPT_LABEL }}
exempt-pr-labels: ${{ env.EXEMPT_LABEL }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -23,4 +25,4 @@ jobs:
CLOSE_MESSAGE: 'This issue has been closed because it is stale. Reopen if necessary.'
EXEMPT_LABEL: 'status: needs discussion,priority: low,priority: medium, priority: high,status: help wanted,status: in progress'
STALE_LABEL: 'status: stale'
STALE_MESSAGE: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
STALE_MESSAGE: 'This issue 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'

0 comments on commit 3c1419f

Please sign in to comment.