diff --git a/.github/workflows/createWebNews.yaml b/.github/workflows/createWebNews.yaml index ca6ad9386..08d8b343a 100644 --- a/.github/workflows/createWebNews.yaml +++ b/.github/workflows/createWebNews.yaml @@ -13,13 +13,9 @@ on: schedule: # Schedule for posting to Beta Website at 10:00 AM - # - cron: "30 9 * * 1-5" + - cron: "30 9 * * 1-5" # Schedule for posting to Official Website at 11:00 AM - # - cron: "0 10 * * 1-5" - - cron: "0 10 31 12 *" # 11:00 AM, 31.12.2024 - - cron: "0 10 3 1 *" # 11:00 AM, 03.01.2025 - - cron: "0 10 6 1 *" # 11:00 AM, 06.01.2025 - - cron: "0 10 7 1 *" # 11:00 AM, 07.01.2025 + - cron: "0 10 * * 1-5" jobs: prepare_news: @@ -117,11 +113,8 @@ jobs: post_official: needs: prepare_news - # if: > - # ((github.event_name == 'schedule' && github.event.schedule == '0 10 * * 1-5') || - # (github.event_name == 'workflow_dispatch' && github.event.inputs.select_web == 'Official')) if: > - (github.event_name == 'schedule' || + ((github.event_name == 'schedule' && github.event.schedule == '0 10 * * 1-5') || (github.event_name == 'workflow_dispatch' && github.event.inputs.select_web == 'Official')) runs-on: ubuntu-latest steps: diff --git a/.github/workflows/notify.yaml b/.github/workflows/notify.yaml index f0523f000..21ee4448e 100644 --- a/.github/workflows/notify.yaml +++ b/.github/workflows/notify.yaml @@ -17,11 +17,7 @@ on: default: false schedule: - # - cron: "0 10 * * 1-5" # 11:00 AM, Monday through Friday - - cron: "0 10 31 12 *" # 11:00 AM, 31.12.2024 - - cron: "0 10 3 1 *" # 11:00 AM, 03.01.2025 - - cron: "0 10 6 1 *" # 11:00 AM, 06.01.2025 - - cron: "0 10 7 1 *" # 11:00 AM, 07.01.2025 + - cron: "0 10 * * 1-5" # 11:00 AM, Monday through Friday jobs: notify: diff --git a/.github/workflows/updateReleaseIndexDate.yaml b/.github/workflows/updateReleaseIndexDate.yaml index 616e3aefd..6a0c5d31e 100644 --- a/.github/workflows/updateReleaseIndexDate.yaml +++ b/.github/workflows/updateReleaseIndexDate.yaml @@ -16,11 +16,6 @@ on: description: Which Date should it be indexed to? (only if first option is not selected) default: "2023-12-31" - schedule: - - cron: "0 7 3 1 *" # 8:00 AM, 03.01.2025 - - cron: "0 7 6 1 *" # 8:00 AM, 06.01.2025 - - cron: "0 7 7 1 *" # 8:00 AM, 07.01.2025 - jobs: update_index_date: runs-on: ubuntu-latest