File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ' Close stale issues and PRs'
2
+ on :
3
+ schedule :
4
+ - cron : ' 0 12 * * *'
5
+ workflow_dispatch :
6
+
7
+ jobs :
8
+ stale :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/stale@v9
12
+ with :
13
+ days-before-stale : 120
14
+ days-before-close : 7
15
+ exempt-issue-labels : ' pinned,keep,enhancement,confirmed'
16
+ exempt-pr-labels : ' pinned,keep,enhancement,confirmed'
17
+ stale-issue-message : >
18
+ Hey! This issue has been open for quite some time without any new comments now.
19
+ It will be closed automatically in a week if no further activity occurs.
20
+
21
+ Thank you for using WLED! ✨
22
+ stale-pr-message : >
23
+ Hey! This pull request has been open for quite some time without any new comments now.
24
+ It will be closed automatically in a week if no further activity occurs.
25
+
26
+ Thank you for using WLED! ✨
27
+ debug-only : true
You can’t perform that action at this time.
0 commit comments