Skip to content

Commit 6f571eb

Browse files
authored
feat: make cron workflows run early PT (#159)
1 parent 4dde648 commit 6f571eb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

lib/content/audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Audit
33
on:
44
workflow_dispatch:
55
schedule:
6-
# "At 01:00 on Monday" https://crontab.guru/#0_1_*_*_1
7-
- cron: "0 1 * * 1"
6+
# "At 08:00 UTC (01:00 PT) on Monday" https://crontab.guru/#0_8_*_*_1
7+
- cron: "0 8 * * 1"
88

99
jobs:
1010
audit:

lib/content/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ on:
1919
- {{pkgRelPath}}/**
2020
{{/if}}
2121
schedule:
22-
# "At 02:00 on Monday" https://crontab.guru/#0_2_*_*_1
23-
- cron: "0 2 * * 1"
22+
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1
23+
- cron: "0 9 * * 1"
2424

2525
jobs:
2626
lint:

lib/content/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ on:
1313
- {{.}}
1414
{{/each}}
1515
schedule:
16-
# "At 03:00 on Monday" https://crontab.guru/#0_3_*_*_1
17-
- cron: "0 3 * * 1"
16+
# "At 10:00 UTC (03:00 PT) on Monday" https://crontab.guru/#0_10_*_*_1
17+
- cron: "0 10 * * 1"
1818

1919
jobs:
2020
analyze:

0 commit comments

Comments
 (0)