Skip to content

Commit

Permalink
chore: update closeStaleIssues.yml to add stale label after 3 days an…
Browse files Browse the repository at this point in the history
…d close issues as not planned after 2 more days (#5581)

* chore: update closeStaleIssues.yml

* chore: use node v20.9.0 lts
  • Loading branch information
daphne-sfdc authored May 7, 2024
1 parent 34c993c commit f56657a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/closeStaleIssues.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Close Stale Issues

## Closes issues marked with 'more information required' label after 7 days
## if original poster does not respond within that time
## Tags issues marked with 'more information required' label with 'stale' label after 3 days
## and automatically closes them after 2 more days if original poster does not respond within that time


permissions:
Expand All @@ -16,11 +16,14 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
- uses: actions/stale@v9
with:
node-version: '20.9.0'
stale-issue-label: stale
days-before-issue-stale: 7
stale-issue-message: 'This issue has not received a response in 7 days. It will auto-close in 7 days unless a response is posted.'
days-before-issue-stale: 3
days-before-issue-close: 2
stale-issue-message: 'This issue has not received a response in 3 days. It will auto-close in 2 days unless a response is posted.'
close-issue-reason: not_planned
operations-per-run: 100
exempt-issue-labels: announcement,bug,on hold,waiting for internal reply,feature
any-of-labels: more information required
any-of-labels: more information required

0 comments on commit f56657a

Please sign in to comment.