44  schedule :
55    #  hourly at minute 23
66    - cron : " 23 * * * *" 
7+   workflow_dispatch :
78
89permissions :
910  contents : read 
@@ -18,19 +19,34 @@ jobs:
1819    steps :
1920      - uses : actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f  #  v10.0.0
2021        with :
21-           repo-token : ${{ secrets.GITHUB_TOKEN }} 
2222          days-before-stale : 7 
2323          days-before-close : 7 
2424          only-labels : " needs author feedback" 
2525          stale-issue-label : stale 
2626          stale-issue-message : > 
27-             This has been automatically marked as stale because it has been marked 
28-             as needing author feedback and has not had any activity for 7 days. 
29-             It will be closed automatically if there is no response from the author 
30-             within 7 additional days from this comment. 
27+             This issue has been labeled as stale due to lack of activity and needing author feedback. 
28+             It will be automatically closed if there is no further activity over the next 7 days. 
3129           stale-pr-label : stale 
3230          stale-pr-message : > 
33-             This has been automatically marked as stale because it has been marked 
34-             as needing author feedback and has not had any activity for 7 days. 
35-             It will be closed automatically if there is no response from the author 
36-             within 7 additional days from this comment. 
31+             This PR has been labeled as stale due to lack of activity and needing author feedback. 
32+             It will be automatically closed if there is no further activity over the next 7 days. 
33+ 
34+        - uses : actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f  #  v10.0.0
35+         with :
36+           days-before-stale : -1 
37+           days-before-close : 365 
38+           close-issue-label : stale 
39+           close-issue-message : > 
40+             Since there has been no activity on this enhancement for the past year we are closing it to help maintain our backlog. 
41+             Anyone who would like to work on it is still welcome to do so, and we can re-open it at that time. 
42+            only-labels : " enhancement" 
43+ 
44+       - uses : actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f  #  v10.0.0
45+         with :
46+           days-before-pr-stale : 90 
47+           days-before-pr-close : 14 
48+           stale-pr-label : stale 
49+           stale-pr-message : > 
50+             This PR has been labeled as stale due to lack of activity. 
51+             It will be automatically closed if there is no further activity over the next 14 days. 
52+            exempt-draft-pr : false 
0 commit comments