File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Mark stale issues and pull requests
2
+
3
+ on :
4
+ schedule :
5
+ - cron : " 0 0 * * *"
6
+
7
+ jobs :
8
+ stale :
9
+
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - uses : actions/stale@v1
14
+ with :
15
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
16
+ stale-issue-message : |
17
+ This issue has been automatically marked as stale because it has not had
18
+ recent activity. It will be closed if no further activity occurs.
19
+ Thank you for your contributions.
20
+ stale-pr-message : |
21
+ This pull request has been automatically marked as stale because it has not had
22
+ recent activity. It will be closed if no further activity occurs.
23
+ Thank you for your contributions.
24
+ stale-issue-label : ' stale'
25
+ exempt-issue-label : ' pinned'
26
+ stale-pr-label : ' stale'
27
+ exempt-pr-label : ' pinned'
28
+ days-before-stale : 90
29
+ days-before-close : 14
30
+ operations-per-run : 5
You can’t perform that action at this time.
0 commit comments