Skip to content

Commit 2119dbd

Browse files
committed
correct and clarify cron schedules
1 parent 966fc2e commit 2119dbd

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/fetch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Fetch Data
22

33
on:
44
schedule:
5-
# 1:15am onwards, days 1-20, first month of each quarter
6-
- cron: '15 1,5,9,13,17,21,23 1-20 1,4,7,10 *'
5+
# at 01:15 on days 1-20 in first month of each quarter
6+
- cron: '15 1 1-20 1,4,7,10 *'
77
workflow_dispatch:
88

99
jobs:

.github/workflows/process.yml.disabled

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Process Data
22

33
on:
44
schedule:
5-
# 1:15am onwards, days 1-20, second month of each quarter
6-
- cron: '15 1,5,9,13,17,21,23 1-20 2,5,8,11 *'
5+
# at 01:15 on days 1-20 in second month of each quarter
6+
- cron: '15 1 1-20 2,5,8,11 *'
77
workflow_dispatch:
88

99
jobs:

.github/workflows/report.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ name: Generate Report
22

33
on:
44
schedule:
5-
# 1:15am onwards, days 1-20, third month of each quarter
6-
- cron: '15 1,5,9,13,17,21,23 1-20 3,6,9,12 *'
5+
# at 01:15 on days 1-20 in third month of each quarter
6+
- cron: '15 1 1-20 3,6,9,12 *'
77
workflow_dispatch:
88

9-
109
jobs:
1110
generate-report:
1211
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)