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
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
name: Close inactive issues
2
2
on:
3
3
schedule:
4
-
- cron: "30 1 * * *"
4
+
- cron: "0 0 * * *"
5
5
6
6
jobs:
7
7
close-issues:
@@ -12,10 +12,14 @@ jobs:
12
12
steps:
13
13
- uses: actions/stale@v5
14
14
with:
15
+
exempt-labels:
16
+
- "bug"
17
+
- "security"
18
+
- "enhancement"
15
19
days-before-issue-stale: 30
16
20
days-before-issue-close: 7
17
21
stale-issue-label: "stale"
18
-
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
22
+
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity. Remove stale label or comment or this will be closed in 7 days."
19
23
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
0 commit comments