File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-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 : ' 30 1 * * *'
5
+
6
+ permissions :
7
+ issues : write
8
+ pull-requests : write
9
+
10
+ jobs :
11
+ stale :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/stale@v5
15
+ with :
16
+ days-before-stale : 90
17
+ days-before-close : 60
18
+ exempt-issue-labels : ' pinned,security'
19
+ exempt-pr-labels : ' pinned,security'
20
+ stale-issue-message : ' This issue has been automatically marked as stale because it has not had
21
+ recent activity. It will be closed if no further activity occurs.
22
+
23
+ If this is still an issue for you, please try to help by debugging it
24
+ further and sharing your results.
25
+
26
+ Thank you for your contributions.'
27
+ stale-pr-message : ' This PR has been automatically marked as stale because it has not had
28
+ recent activity. It will be closed if no further activity occurs.
29
+
30
+ If this is still an issue for you, please try to complete the PR by adding tests and making sure that the CI is green.
31
+
32
+ Thank you for your contributions.'
You can’t perform that action at this time.
0 commit comments