Skip to content

Commit

Permalink
fix: Make exempt labels plural for stale action (#312)
Browse files Browse the repository at this point in the history
These labels are plural since v2 to support multiple exempt labels, but
this broke the current setup as the old singular exempt options are no
longer accepted.
  • Loading branch information
kadler committed Oct 6, 2020
1 parent ff032ac commit 515bc77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
stale-pr-message: ':wave: Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
stale-issue-label: 'stale'
exempt-issue-label: 'keep-open'
exempt-pr-label: 'keep-open'
stale-pr-label: 'stale'
exempt-issue-labels: 'keep-open'
exempt-pr-labels: 'keep-open'
days-before-stale: 30
days-before-close: 7
remove-stale-when-updated: true

0 comments on commit 515bc77

Please sign in to comment.