File tree Expand file tree Collapse file tree 1 file changed +12
-14
lines changed
Filter options
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
6
1
name : Mark stale issues and pull requests
7
2
8
3
on :
9
4
schedule :
10
- - cron : ' 0 12 * * *'
5
+ - cron : " 0 12 * * *"
11
6
12
7
jobs :
13
8
stale :
14
-
15
9
runs-on : ubuntu-latest
16
10
permissions :
17
11
issues : write
18
12
pull-requests : write
19
13
20
14
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