Skip to content

Commit

Permalink
account for time zone
Browse files Browse the repository at this point in the history
GitHub cron jobs are executed based on UTC https://jackharner.com/blog/github-actions-cron/
  • Loading branch information
niklassiemer authored Oct 11, 2024
1 parent 8354ff6 commit 2edf4e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
repository_dispatch:
types: [build]
schedule:
- cron: "0 22 * * 1"
- cron: "0 20 * * 1"
# github cron jobs are executed based on UTC https://jackharner.com/blog/github-actions-cron/

jobs:
build:
Expand Down

0 comments on commit 2edf4e4

Please sign in to comment.