Skip to content

Commit 14d07a5

Browse files
committed
chore: update stale action to v9
1 parent 7357962 commit 14d07a5

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

.github/workflows/stale.yml

+10-16
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
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
61
name: Mark stale issues and pull requests
72

83
on:
94
schedule:
10-
- cron: '32 12 * * *'
5+
- cron: '32 12 * * *'
116

127
jobs:
138
stale:
14-
159
runs-on: ubuntu-latest
1610
permissions:
1711
issues: write
1812
pull-requests: write
1913

2014
steps:
21-
- uses: actions/stale@v5
22-
with:
23-
repo-token: ${{ secrets.GITHUB_TOKEN }}
24-
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
25-
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions'
26-
stale-issue-label: 'no-issue-activity'
27-
stale-pr-label: 'no-pr-activity'
28-
days-before-stale: 7
29-
days-before-close: 14
15+
- uses: actions/stale@v9
16+
with:
17+
repo-token: ${{ secrets.GITHUB_TOKEN }}
18+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
19+
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions'
20+
stale-issue-label: 'no-issue-activity'
21+
stale-pr-label: 'no-pr-activity'
22+
days-before-stale: 7
23+
days-before-close: 14

0 commit comments

Comments
 (0)