File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Close stale issues
2+
3+ on :
4+ schedule :
5+ - cron : ' 0 0 * * *' # Every day at midnight UTC
6+
7+ permissions :
8+ issues : write
9+ pull-requests : write
10+
11+ jobs :
12+ stale :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/stale@v9
16+ with :
17+ # Timing
18+ days-before-stale : 30
19+ days-before-close : 7
20+
21+ # Messages
22+ stale-issue-message : >
23+ ⚠️ This issue has been marked as stale due to 30 days of inactivity.
24+ It will be automatically closed in 7 days if there's no further input.
25+ close-issue-message : >
26+ 🔒 This issue was closed due to inactivity.
27+
28+ # Labels
29+ stale-issue-label : ' stale'
30+ exempt-issue-labels : ' pinned,do-not-close,important'
31+
32+ # Only operate on issues (not PRs)
33+ operations-per-run : 50
34+ only-issues : true
35+ remove-stale-when-updated : true
You can’t perform that action at this time.
0 commit comments