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

fixup: only test when not refreshing, otherwise it will cause grief #5195

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/prod-service-restart-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
- cron: "0 20 * * 1-5" # Deploys every weekday at 8pm UTC

concurrency:
group: deploy-production
group: restart-production
cancel-in-progress: false

jobs:
deploy-production:
restart-production:
uses: ./.github/workflows/deploy-service-restart.yml
with:
environment: production
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/prod-test-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ name: Production Crons

on:
schedule:
- cron: "*/15 * * * *" # Runs every 15 minutes
# 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)

# 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
# Prod deployment cron is currently disabled, but this should `not` cancel the synthetic
# e2e runner cron
concurrency:
group: deploy-production
cancel-in-progress: false
Expand Down
Loading