Skip to content

Commit cfbf61a

Browse files
authored
ci: add nightly scheduled GitHub Actions job (#4432)
Summary: This extends our current GitHub Actions CI workflow to run nightly at 05:00 PST (06:00 PDT, 13:00 UTC). The [docs for scheduled events][1] indicate that such a job will run on the default (master) branch. This job should run with write access to the build cache. [1]: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#scheduled-events Test Plan: Note that the workflow parses and normal CI still runs on this job. We’ll wait for tomorrow to see if it actually runs. wchargin-branch: ci-gh-nightly
1 parent 6c7b0b2 commit cfbf61a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ on:
1515
- '[0-9]+.*'
1616
- 'ci-*'
1717
pull_request: {}
18+
schedule:
19+
# 13:00 UTC is 05:00 in Pacific standard time (UTC-8), which is well
20+
# after nightly TensorFlow wheels are released (around 2--3 AM) and
21+
# just after nightly TensorBoard wheels are released (around 04:15).
22+
# (cron syntax: minute hour day-of-month month day-of-week)
23+
- cron: '0 13 * * *'
1824

1925
env:
2026
# Keep this Bazel version in sync with the `versions.check` directive

0 commit comments

Comments
 (0)