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] Update GitHub action for marking issues and PRs as stale
This change updates the GitHub action to mark inactive issues and PRs as
stale to match other projects.
Adding a lifecycle/frozen label bypasses these checks.
Signed-off-by: Evan Lezar <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/stale.yaml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,15 @@ jobs:
14
14
steps:
15
15
- uses: actions/stale@v10
16
16
with:
17
-
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.'
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.'
17
+
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
19
stale-issue-label: 'lifecycle/stale'
20
20
stale-pr-label: 'lifecycle/stale'
21
+
exempt-issue-labels: 'lifecycle/frozen'
22
+
exempt-pr-labels: 'lifecycle/frozen'
21
23
days-before-stale: 90
22
24
close-issue-message: 'This issue was automatically closed due to inactivity.'
23
-
close-pr-message: 'This pull request was automatically closed due to inactivity.'
25
+
close-pr-message: 'This pull request was automatically closed due to inactivity.'
0 commit comments