From dc7a79516567cbd091a2f90f5752476887d58ee4 Mon Sep 17 00:00:00 2001 From: stack72 Date: Thu, 2 Jan 2025 20:46:57 +0000 Subject: [PATCH] chore(ci): Re-enable daily deploy cron --- ...{prod-deploy-cron.disabled => prod-deploy-cron.yml} | 0 ...art-cron.yml => prod-service-restart-cron.disabled} | 0 .github/workflows/prod-test-cron.yml | 10 +++------- 3 files changed, 3 insertions(+), 7 deletions(-) rename .github/workflows/{prod-deploy-cron.disabled => prod-deploy-cron.yml} (100%) rename .github/workflows/{prod-service-restart-cron.yml => prod-service-restart-cron.disabled} (100%) diff --git a/.github/workflows/prod-deploy-cron.disabled b/.github/workflows/prod-deploy-cron.yml similarity index 100% rename from .github/workflows/prod-deploy-cron.disabled rename to .github/workflows/prod-deploy-cron.yml diff --git a/.github/workflows/prod-service-restart-cron.yml b/.github/workflows/prod-service-restart-cron.disabled similarity index 100% rename from .github/workflows/prod-service-restart-cron.yml rename to .github/workflows/prod-service-restart-cron.disabled diff --git a/.github/workflows/prod-test-cron.yml b/.github/workflows/prod-test-cron.yml index 992ca7f952..83816a02f7 100644 --- a/.github/workflows/prod-test-cron.yml +++ b/.github/workflows/prod-test-cron.yml @@ -2,14 +2,10 @@ name: Production Crons on: schedule: - # Weekdays: Every 15 minutes except 7:45 PM and 8:00 PM UTC - - cron: "0-44/15 0-19 * * 1-5" # Every 15 minutes from 12:00 AM to 7:44 PM UTC (Monday to Friday) - - cron: "15-59/15 20-23 * * 1-5" # Every 15 minutes from 8:15 PM to 11:59 PM UTC (Monday to Friday) - # Weekends: Every 15 minutes including 8:00 PM UTC - - cron: "*/15 * * * 6,0" # Every 15 minutes on Saturday (6) and Sunday (0) + - cron: "*/15 * * * *" # Runs every 15 minutes -# Prod deployment cron is currently disabled, but this should `not` cancel the synthetic -# e2e runner cron +# We will wait until these tests finish before starting a deploy +# We will also wait for a deploy to finish before starting to run tests concurrency: group: deploy-production cancel-in-progress: false