File tree Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Expand file tree Collapse file tree 1 file changed +12
-14
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
61name : Mark stale issues and pull requests
72
83on :
94 schedule :
10- - cron : ' 0 12 * * *'
5+ - cron : " 0 12 * * *"
116
127jobs :
138 stale :
14-
159 runs-on : ubuntu-latest
1610 permissions :
1711 issues : write
1812 pull-requests : write
1913
2014 steps :
21- - uses : actions/stale@f7176fd3007623b69d27091f9b9d4ab7995f0a06 # v5
22- with :
23- repo-token : ${{ secrets.GITHUB_TOKEN }}
24- stale-issue-message : ' Stale issue message'
25- stale-pr-message : ' Stale pull request message'
26- stale-issue-label : ' no-issue-activity'
27- stale-pr-label : ' no-pr-activity'
15+ - uses : actions/stale@f7176fd3007623b69d27091f9b9d4ab7995f0a06 # v5
16+ with :
17+ repo-token : ${{ secrets.GITHUB_TOKEN }}
18+ stale-issue-message : >
19+ This issue has been automatically marked as stale because it has not
20+ had recent activity. It will be closed if no further activity occurs.
21+ Thank you for your contributions.
22+ stale-pr-message : >
23+ This pull request has been automatically marked as stale because it has not
24+ had recent activity. It will be closed if no further activity occurs.
25+ Thank you for your contributions.
You can’t perform that action at this time.
0 commit comments