Skip to content

Commit 3f6e1d6

Browse files
Fix cron schedule for nightlies via GitHub Actions (facebookresearch#3470)
Summary: Pull Request resolved: facebookresearch#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
1 parent 5735b16 commit 3f6e1d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Nightly
22
on:
33
schedule:
4-
- cron: '1 10 * * *'
4+
- cron: '10 1 * * *'
55
env:
66
OMP_NUM_THREADS: '10'
77
MKL_THREADING_LAYER: GNU

0 commit comments

Comments
 (0)