Skip to content

Commit

Permalink
Fix weekly CI cron expression (#5036)
Browse files Browse the repository at this point in the history
Signed-off-by: JesusPoderoso <[email protected]>
  • Loading branch information
JesusPoderoso authored Jul 8, 2024
1 parent f973dc5 commit 9b09ada
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/weekly-mac-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Fast DDS MacOS CI (weekly)
on:
workflow_dispatch:
schedule:
- cron: '0 * * * 1' # Run at minute 0 on Monday
- cron: '0 0 * * 1' # Run at minute 0 on Monday

jobs:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Fast DDS Ubuntu CI (weekly)
on:
workflow_dispatch:
schedule:
- cron: '0 * * * 1' # Run at minute 0 on Monday
- cron: '0 0 * * 1' # Run at minute 0 on Monday

jobs:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Fast DDS Windows CI (weekly)
on:
workflow_dispatch:
schedule:
- cron: '0 * * * 1' # Run at minute 0 on Monday
- cron: '0 0 * * 1' # Run at minute 0 on Monday

jobs:

Expand Down

0 comments on commit 9b09ada

Please sign in to comment.