Skip to content

Commit

Permalink
Fix Cron Expr in Update ACE/TAO Workflow
Browse files Browse the repository at this point in the history
I noticed that the new workflow from OpenDDS#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.
  • Loading branch information
iguessthislldo committed Nov 3, 2023
1 parent 0b4af33 commit 3d46292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-ace-tao.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 3d46292

Please sign in to comment.