Run stale job hourly (#28769)
Jan Kassens committed
Apr 9, 2024 at 09:21 UTC
cffbcac8e3d67edf8696cbc71c5144cc32a64667
1 file changed
+4
-4
.github/workflows/stale.yml
+4
-4
@@ -2,8 +2,8 @@
2
name: 'Manage stale issues and PRs'
3
on:
4
schedule:
5
- # Run daily at 2AM
6
- - cron: '0 2 * * *'
5
+ # Run hourly
6
+ - cron: '0 * * * *'
7
8
jobs:
9
stale:
@@ -16,7 +16,7 @@ jobs:
16
days-before-stale: 90
17
# Number of days of inactivity before a stale issue or PR is closed
18
days-before-close: 7
19
- # Number of issues or PRs to process per day
19
+ # API calls per run
20
operations-per-run: 100
21
22
# --- Issues ---
@@ -43,4 +43,4 @@ jobs:
43
close-pr-message: >
44
Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you!
45
# PRs with these labels will never be considered stale
46
- exempt-pr-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request,Type: Enhancement"
\ No newline at end of file
46
+ exempt-pr-labels: "Partner,React Core Team,Resolution: Backlog,Type: Bug,Type: Discussion,Type: Needs Investigation,Type: Regression,Type: Feature Request,Type: Enhancement"