From f8db845d6b70f89309f3ff91fe2fff01368ea040 Mon Sep 17 00:00:00 2001 From: Teddy Andrieux Date: Fri, 27 Sep 2024 09:32:29 +0000 Subject: [PATCH] .github: Change time for nightly --- .github/workflows/crons.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/crons.yaml b/.github/workflows/crons.yaml index 433b94612f..5b8225df09 100644 --- a/.github/workflows/crons.yaml +++ b/.github/workflows/crons.yaml @@ -4,11 +4,11 @@ on: # NOTE: Schedule is only run on the latest commit of the default branch, # so we need to schedule Cron Jobs for all branches here schedule: - # Run V 0 nightly every weekday at 23:00 - - cron: "0 23 * * 1-5" + # Run V 0 nightly every weekday at 01:00 + - cron: "0 1 * * 1-5" - # Run V -1 nightly every weekday at 00:00 - - cron: "0 0 * * 1-5" + # Run V -1 nightly every weekday at 02:00 + - cron: "0 2 * * 1-5" jobs: crons: @@ -18,11 +18,11 @@ jobs: matrix: include: - name: "Nightly for MetalK8s 129.0" - cron: "0 23 * * 1-5" + cron: "0 1 * * 1-5" branch: "development/129.0" workflow: "nightly.yaml" - name: "Nightly for MetalK8s 128.0" - cron: "0 0 * * 1-5" + cron: "0 2 * * 1-5" branch: "development/128.0" workflow: "nightly.yaml" steps: