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
# Prevent overlapping scheduled runs (low frequency but added for consistency)
4
4
concurrency:
5
5
group: ${{ github.workflow }}-${{ github.ref }}
6
6
cancel-in-progress: true
7
7
on:
8
8
schedule:
9
-
- cron: "30 1 * * *"
9
+
- cron: '30 1 * * *'
10
10
11
11
jobs:
12
12
stale:
13
13
runs-on: ubuntu-latest
14
14
steps:
15
15
- uses: actions/stale@v9
16
16
with:
17
-
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. Thank you for your contributions."
18
-
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."
17
+
stale-issue-message: >
18
+
This issue has been marked as stale because it has been open for 60 days with no activity.
19
+
It will be closed in 7 days unless there is further activity. To keep it open, add a comment or remove the stale label.
20
+
21
+
stale-pr-message: >
22
+
This pull request has been marked as stale because it has been open for 60 days with no activity.
23
+
It will be closed in 10 days unless there is further activity. To keep it open, add a comment or remove the stale label.
24
+
25
+
close-issue-message: >
26
+
This issue was closed because it has been inactive for 7 days after being marked as stale.
27
+
28
+
close-pr-message: >
29
+
This pull request was closed because it has been inactive for 10 days after being marked as stale.
0 commit comments