Skip to content

Commit f728318

Browse files
authored
Update stale.yml
1 parent 099afae commit f728318

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

.github/workflows/stale.yml

+18-19
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,30 @@ name: Mark stale issues and pull requests
1313

1414
on:
1515
schedule:
16-
- cron: "0 0 * * *"
16+
- cron: "0 0 * * *"
1717

1818
permissions:
1919
issues: write
2020
pull-requests: write
2121

2222
jobs:
2323
stale:
24-
24+
name: Process Stale Issues and PRs
2525
runs-on: ubuntu-latest
26-
2726
steps:
28-
- uses: actions/stale@v8
29-
with:
30-
repo-token: ${{ secrets.GITHUB_TOKEN }}
31-
stale-issue-message: 'This issue did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
32-
stale-pr-message: 'This pull request did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please verify it has no conflicts with the develop branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work.'
33-
close-issue-message: 'This issue did not get any activity in the past 180 days and thus has been closed. Please check if the newest release or develop branch has it fixed. Please, create a new issue if the issue is not fixed.'
34-
close-pr-message: 'This pull request did not get any activity in the past 180 days and thus has been closed.'
35-
stale-issue-label: 'no-issue-activity'
36-
stale-pr-label: 'no-pr-activity'
37-
days-before-stale: 7
38-
days-before-close: 180
39-
remove-stale-when-updated: true
40-
exempt-all-milestones: true
41-
exempt-pr-labels: 'wip'
42-
exempt-issue-labels: 'wip'
43-
operations-per-run: 30
27+
- uses: actions/stale@v9
28+
with:
29+
repo-token: ${{ secrets.GITHUB_TOKEN }}
30+
stale-issue-message: 'This issue did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please check if the develop branch has fixed it and report again or close the issue.'
31+
stale-pr-message: 'This pull request did not get any activity in the past 10 days and will be closed in 180 days if no update occurs. Please verify it has no conflicts with the develop branch and rebase if needed. Mention it now if you need help or give permission to other people to finish your work.'
32+
close-issue-message: 'This issue did not get any activity in the past 180 days and thus has been closed. Please check if the newest release or develop branch has it fixed. Please, create a new issue if the issue is not fixed.'
33+
close-pr-message: 'This pull request did not get any activity in the past 180 days and thus has been closed.'
34+
stale-issue-label: 'no-issue-activity'
35+
stale-pr-label: 'no-pr-activity'
36+
days-before-stale: 7
37+
days-before-close: 180
38+
remove-stale-when-updated: true
39+
exempt-all-milestones: true
40+
exempt-pr-labels: 'wip'
41+
exempt-issue-labels: 'wip'
42+
operations-per-run: 30

0 commit comments

Comments
 (0)