You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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: '32 12 * * *'
5
+
- cron: '32 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@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'
0 commit comments