Skip to content

Commit 14f7bbb

Browse files
committed
Fix cron schedule: 12-min stagger → 15-min stagger
READMEs state jobs update every 15 minutes. Cron was running every 12 minutes (5 ticks/hour). Now runs every 15 minutes (4 ticks/hour) with 2-min offset preserved for stagger.
1 parent b4a4065 commit 14f7bbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Update Jobs from Aggregator
22

33
on:
44
schedule:
5-
- cron: '8,20,32,44,56 * * * *' # Every 12 minutes (staggered schedule)
5+
- cron: '8,23,38,53 * * * *' # Every 15 minutes (staggered schedule)
66
workflow_dispatch: # Allow manual triggering
77
push:
88
branches: [ main ]

0 commit comments

Comments
 (0)