Skip to content

Commit

Permalink
change cron schedule for legacy test workflow (#5551)
Browse files Browse the repository at this point in the history
The schedule for the legacy opmath test workflow was set to `0 0 2 * *`
instead of `0 2 * * *`. This makes it run on the 2nd of every month at
midnight, instead of every day at 2am. Oops. Fixed in this PR.
  • Loading branch information
lillian542 authored Apr 22, 2024
1 parent 91e967f commit 9f1a93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/legacy_op_math.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Legacy opmath tests

on:
schedule:
- cron: "0 0 2 * *"
- cron: "0 2 * * *"
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 9f1a93c

Please sign in to comment.