Skip to content

Commit

Permalink
chore: enable stale-exempt label (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
broofa authored Jan 16, 2023
1 parent e53793f commit eca69af
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Close inactive issues
on:
schedule:
- cron: "45 2 * * *"
- cron: '45 2 * * *'

jobs:
close-issues:
Expand All @@ -12,11 +12,13 @@ jobs:
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 90
close-issue-message: 'Closing issue due to 30 days since being marked as stale.'
days-before-issue-close: 30
stale-issue-label: "stale"
stale-issue-message: "Marking as stale due to 90 days with no activity."
close-issue-message: "Closing issue due to 30 days since being marked as stale."
days-before-pr-stale: -1
days-before-issue-stale: 90
days-before-pr-close: -1
days-before-pr-stale: -1
exempt-issue-labels: ['stale-exempt']
exempt-pr-labels: ['stale-exempt']
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: 'stale'
stale-issue-message: 'Marking as stale due to 90 days with no activity.'

0 comments on commit eca69af

Please sign in to comment.