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
[no-relnote] Add GitHub action for marking issues and PRs as stale
This change adds a GitHub action to mark inactive issues and PRs as
stale. A lifecycle/stale label is applied after 90 days before an
issue / PR is closed after an additional 30 days of inaction.
Adding a lifecycle/frozen label bypasses these checks.
Signed-off-by: Evan Lezar <[email protected]>
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. This issue will be closed in 30 days unless new comments are made or the stale label is removed. To skip these checks, apply the "lifecycle/frozen" label.'
18
+
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. This PR will be closed in 30 days unless new comments are made or the stale label is removed. To skip these checks, apply the "lifecycle/frozen" label.'
19
+
stale-issue-label: 'lifecycle/stale'
20
+
stale-pr-label: 'lifecycle/stale'
21
+
exempt-issue-labels: 'lifecycle/frozen'
22
+
exempt-pr-labels: 'lifecycle/frozen'
23
+
days-before-stale: 90
24
+
close-issue-message: 'This issue was automatically closed due to inactivity.'
25
+
close-pr-message: 'This pull request was automatically closed due to inactivity.'
0 commit comments