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
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,14 +23,18 @@ jobs:
23
23
days-before-stale: 30
24
24
days-before-close: 5
25
25
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
26
-
stale-issue-label: $stale_label
26
+
stale-issue-label: '${{ env.stale_label }}'
27
27
exempt-issue-labels: 'internal, Fixed In Next Release, Bug, never-stale'
28
28
exempt-all-issue-assignees: true
29
29
operations-per-run: 300
30
30
close-issue-reason: 'not_planned'
31
31
32
-
remove_stale: # trigger "stale" removal immediately when stale issues are commented on
33
-
if: github.event_name == 'issue_comment'
32
+
remove_stale:
33
+
# trigger "stale" removal immediately when stale issues are commented on
34
+
# we need to explicitly check that the trigger does not run on comment on a PR as
35
+
# 'issue_comment' triggers on issues AND PR comments
0 commit comments