From 0f6ca4f148412ed93f113f05de3c3ffab74d1bae Mon Sep 17 00:00:00 2001 From: jamesemery Date: Fri, 15 Apr 2022 12:03:18 -0400 Subject: [PATCH] Correcting the time for GATKNightly build cron jobs. (#7784) --- .github/workflows/gatk-nightly-docker.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gatk-nightly-docker.yml b/.github/workflows/gatk-nightly-docker.yml index 799a351fc09..d623eaf25e4 100644 --- a/.github/workflows/gatk-nightly-docker.yml +++ b/.github/workflows/gatk-nightly-docker.yml @@ -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