Skip to content

Commit 85f7216

Browse files
committed
Refs #21228: Fix weekly cron expression
Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com>
1 parent 91e1d95 commit 85f7216

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/weekly-ubuntu-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Fast DDS Python Ubuntu CI (weekly)
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: '0 * * * 1' # Run at minute 0 on Monday
6+
- cron: '0 0 * * 1' # Run at minute 0 on Monday
77

88
jobs:
99
weekly-ubuntu-ci-1_0_x:

.github/workflows/weekly-windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Fast DDS Python Windows CI (weekly)
33
on:
44
workflow_dispatch:
55
schedule:
6-
- cron: '0 * * * 1' # Run at minute 0 on Monday
6+
- cron: '0 0 * * 1' # Run at minute 0 on Monday
77

88
jobs:
99
weekly-windows-ci-1_0_x:

0 commit comments

Comments
 (0)