Skip to content

Commit 05e5fa0

Browse files
authored
bump and tune params of the stale workflow (#337)
1 parent 6b59486 commit 05e5fa0

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/stale.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
# You can adjust the behavior by modifying this file.
44
# For more information, see:
55
# https://github.com/actions/stale
6-
name: stale
6+
name: Mark stale issues and pull requests
77

88
on:
99
schedule:
10-
- cron: '45 13 * * *'
10+
- cron: '45 15 * * *'
1111

1212
jobs:
1313
stale:
@@ -18,10 +18,13 @@ jobs:
1818
pull-requests: write
1919

2020
steps:
21-
- uses: actions/stale@v3
21+
- uses: actions/stale@v9
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
stale-issue-message: 'Stale issue message'
2525
stale-pr-message: 'Stale pull request message'
26-
stale-issue-label: 'no-issue-activity'
27-
stale-pr-label: 'no-pr-activity'
26+
stale-issue-label: 'no-activity'
27+
stale-pr-label: 'no-activity'
28+
operations-per-run: 3
29+
days-before-stale: 90
30+
days-before-close: 30

0 commit comments

Comments
 (0)