From 3d46292ab90c92f5a69a669ee93834e3b3a6c923 Mon Sep 17 00:00:00 2001 From: Fred Hornsey Date: Fri, 3 Nov 2023 14:13:04 -0500 Subject: [PATCH] Fix Cron Expr in Update ACE/TAO Workflow I noticed that the new workflow from #4327 wasn't running. After a bit of investigation, I saw that I messed up the cron syntax as it shouldn't have that 0 at the start. Between testing it in my fork and making the PR and I adjusted the time to be during the off hours of both Europe and America and must have messed it up then. --- .github/workflows/update-ace-tao.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-ace-tao.yml b/.github/workflows/update-ace-tao.yml index 16f475ebc17..ff79ee1b59e 100644 --- a/.github/workflows/update-ace-tao.yml +++ b/.github/workflows/update-ace-tao.yml @@ -3,7 +3,7 @@ name: "Update ACE/TAO Versions" on: workflow_dispatch: schedule: - - cron: '0 33 23 * * *' + - cron: '33 23 * * *' concurrency: group: ${{ github.workflow }}-${{ github.ref }}