File tree Expand file tree Collapse file tree 2 files changed +28
-21
lines changed Expand file tree Collapse file tree 2 files changed +28
-21
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2
+ # You can adjust the behavior by modifying this file.
3
+ # For more information, see:
4
+ # https://github.com/actions/stale
5
+
6
+ name : ' Close stale issues and PRs'
7
+ on :
8
+ schedule :
9
+ - cron : ' 30 1 * * *'
10
+
11
+ jobs :
12
+ stale :
13
+ runs-on : ubuntu-latest
14
+ permissions :
15
+ issues : write
16
+ pull-requests : write
17
+ steps :
18
+ - name : Close Stale Issues
19
+ uses : actions/stale@v9
20
+ with :
21
+ stale-issue-message : >
22
+ This issue has been automatically marked as stale because it has not had
23
+ recent activity. It will be closed if no further activity occurs. Thank you
24
+ for your contributions.
25
+ close-issue-message : >
26
+ This issue has been automatically closed due to inactivity.
27
+ days-before-stale : 360
28
+ days-before-close : 28
You can’t perform that action at this time.
0 commit comments