Skip to content

Commit 48c2162

Browse files
authored
Update and activate stale-issue-cleanup (#665)
## Summary Updates the stale-issue-cleanup action with the following changes 1. Turns off `debug-only` mode so it can run on live issues 2. Increases operations, so that we can process the full list of issues 3. Increases stale timer to 45 days, giving us ~2 cycles to act on an issue/PR before it gets marked stale ## How was it tested? This action has been running daily in debug mode for over a week. See logs and actions here: https://github.com/jetpack-io/devbox/actions/workflows/stale-issue-cleanup.yml
1 parent 197053c commit 48c2162

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/stale-issue-cleanup.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Close stale issues and PRs'
1+
name: close-stale-issues
22
# Marks issues and PRs as stale after 30 days, then closes them if marked stale for 5 days
33
on:
44
schedule:
@@ -14,6 +14,6 @@ jobs:
1414
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity. Remove the `stale` label or add a comment, otherwise this PR will be closed in 5 days.'
1515
exempt-issue-labels: 'future'
1616
exempt-pr-labels: 'awaiting-approval, work-in-progress'
17-
days-before-stale: 30
17+
days-before-stale: 45
1818
days-before-close: 5
19-
debug-only: true
19+
operations: 100

0 commit comments

Comments
 (0)