Skip to content

Commit

Permalink
chore: change stale check frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
kronenthaler committed Sep 16, 2020
1 parent f3caf3c commit 2836d70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "close-stale-issues"

on:
schedule:
- cron: "0 0 * * *"
- cron: "* * */5 * *"

jobs:
stale:
Expand All @@ -11,8 +11,8 @@ jobs:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 5
stale-issue-message: 'This issue has become stale, the required information has not been provided and it is been marked for closure in the next 5 days'
days-before-stale: 60
days-before-close: 10
stale-issue-message: 'This issue has become stale, the required information has not been provided and it is been marked for closure in the next 10 days'
stale-issue-label: 'not-enough-info'
exempt-issue-label: 'enhancement'

0 comments on commit 2836d70

Please sign in to comment.