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
Use `actions/stale` to perform the following actions twice daily:
- Mark issues that haven't been touched for 1 year as stale.
- Close issues that have been marked stale for 30 days without an update.
stale-issue-message: "Due to lack of recent activity, this issue has been labeled as 'stale'. It will be closed if no further activity occurs within 30 more days. Any new comment will remove the label."
34
+
close-issue-message: "This issue will now be closed since it has been labeled 'stale' without activity for 30 days."
35
+
days-before-stale: ${{ fromJson(inputs.daysBeforeStale || 2192) }} # Default to 6 years if not specified as input
36
+
days-before-close: ${{ fromJson(inputs.daysBeforeClose || 30 ) }} # Default to 30 days if not specified as input
37
+
days-before-pr-stale: -1# Do not label PRs as 'stale'
38
+
days-before-pr-close: -1# Do not close PRs labeled as 'stale'
0 commit comments