From 17b98f785ce4b976f113f50d2cf75305ab32edbe Mon Sep 17 00:00:00 2001 From: cytopia Date: Sun, 3 Apr 2022 14:26:08 +0200 Subject: [PATCH] Separate nightly workflows --- .github/workflows/action-schedule_master.yml | 4 ++-- .github/workflows/action-schedule_tags.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action-schedule_master.yml b/.github/workflows/action-schedule_master.yml index 6bbecdb..63c9259 100644 --- a/.github/workflows/action-schedule_master.yml +++ b/.github/workflows/action-schedule_master.yml @@ -10,9 +10,9 @@ name: nightly # When to run # ------------------------------------------------------------------------------------------------- on: - # Nightly: At 00:00 on Sunday, Tuesday, and Thursday + # Nightly: At 00:00 on Monday, Wednesday, and Friday schedule: - - cron: '0 0 * * 0,2,4' + - cron: '0 18 * * 1,3,5' # Dispatch: allows for manual trigger via GH UI workflow_dispatch: diff --git a/.github/workflows/action-schedule_tags.yml b/.github/workflows/action-schedule_tags.yml index 35fb082..fa467ec 100644 --- a/.github/workflows/action-schedule_tags.yml +++ b/.github/workflows/action-schedule_tags.yml @@ -10,9 +10,9 @@ name: nightly # When to run # ------------------------------------------------------------------------------------------------- on: - # Nightly: At 00:00 on Sunday, Tuesday, and Thursday + # Nightly: At 18:00 on Sunday, Tuesday, and Thursday schedule: - - cron: '0 0 * * 0,2,4' + - cron: '0 18 * * 0,2,4' # Dispatch: allows for manual trigger via GH UI workflow_dispatch: