Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github: Change time for nightly #4434

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/crons.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
Loading