Skip to content

Commit 1e6654a

Browse files
nitins17Google-ML-Automation
authored andcommitted
Fix cron schedule to run past minute 0 every 2nd hour
In the previous schedule, we were running at every minute at every 2nd hour. PiperOrigin-RevId: 698804124
1 parent 7335267 commit 1e6654a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cloud-tpu-ci-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
name: CI - Cloud TPU (nightly)
1414
on:
1515
schedule:
16-
- cron: "* */2 * * *" # Run every 2 hours
16+
- cron: "0 */2 * * *" # Run every 2 hours
1717
workflow_dispatch: # allows triggering the workflow run manually
1818
# This should also be set to read-only in the project settings, but it's nice to
1919
# document and enforce the permissions here.

0 commit comments

Comments
 (0)