Skip to content

Commit

Permalink
Fix cron schedule for nightlies via GitHub Actions (#3470)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #3470

Hour and minute values are swapped, the goal is to run is at 1:10am UTC.

Reviewed By: algoriddle

Differential Revision: D57654059

fbshipit-source-id: 23bcb42e5c95f731cd4713ad4691d0f475ed8ad2
  • Loading branch information
ramilbakhshyiev authored and facebook-github-bot committed May 22, 2024
1 parent 7d7fef0 commit f352168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Nightly
on:
schedule:
- cron: '1 10 * * *'
- cron: '10 1 * * *'
env:
OMP_NUM_THREADS: '10'
MKL_THREADING_LAYER: GNU
Expand Down

0 comments on commit f352168

Please sign in to comment.