You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## 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
Copy file name to clipboardExpand all lines: .github/workflows/stale-issue-cleanup.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
name: 'Close staleissues and PRs'
1
+
name: close-stale-issues
2
2
# Marks issues and PRs as stale after 30 days, then closes them if marked stale for 5 days
3
3
on:
4
4
schedule:
@@ -14,6 +14,6 @@ jobs:
14
14
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.'
0 commit comments