Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing the cron trigger to hopefully reduce the change of jobs being dropped. #7784

Merged
merged 5 commits into from
Apr 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/gatk-nightly-docker.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Build and Upload GATK Nightly Docker Image
on:
schedule:
# trigger the job the image at 1am est every night (UTC 20:00)
# NOTE: by default schedule:cron jobs pull from the repo default branch which makes this the master branch of gatk
- cron: '0 20 * * *'
- cron: '17 05 * * *' # trigger the job to build the image at 12:17am EST every night (UTC 05:17)

# NOTE: by default schedule:cron jobs pull from the repo default branch which makes this the master branch of gatk
jobs:
buildDocker:
name: build docker images
Expand Down