Skip to content

Commit 2edf4e4

Browse files
authored
account for time zone
GitHub cron jobs are executed based on UTC https://jackharner.com/blog/github-actions-cron/
1 parent 8354ff6 commit 2edf4e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/weekly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
repository_dispatch:
55
types: [build]
66
schedule:
7-
- cron: "0 22 * * 1"
7+
- cron: "0 20 * * 1"
8+
# github cron jobs are executed based on UTC https://jackharner.com/blog/github-actions-cron/
89

910
jobs:
1011
build:

0 commit comments

Comments
 (0)