Commit 8689d26 1 parent d700fe9 commit 8689d26 Copy full SHA for 8689d26
File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed 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
+ #
3
+ # You can adjust the behavior by modifying this file.
4
+ # For more information, see:
5
+ # https://github.com/actions/stale
6
+ name : Mark stale issues and pull requests
7
+
8
+ on :
9
+ schedule :
10
+ - cron : ' 30 2 * * *'
11
+
12
+ jobs :
13
+ stale :
14
+
15
+ runs-on : ubuntu-latest
16
+ permissions :
17
+ issues : write
18
+
19
+ steps :
20
+ - uses : actions/stale@v5
21
+ with :
22
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
23
+ stale-issue-message : ' This issue is stale because it has been open for 30 days with no activity.'
24
+ close-issue-message : " This issue was closed because it has been inactive for 14 days since being marked as stale."
You can’t perform that action at this time.
0 commit comments