diff --git a/.github/workflows/deploy-ecs.yml b/.github/workflows/deploy-ecs.yml index 3618db8..96173f4 100644 --- a/.github/workflows/deploy-ecs.yml +++ b/.github/workflows/deploy-ecs.yml @@ -4,6 +4,12 @@ on: workflow_dispatch: push: branches: ["main"] + schedule: + # Runs every Monday and Thursday at 15:39 UTC, which is either + # 8:49 AM or 9:49 AM ET, depending on Daylight Savings Time. This + # is two hours before the prod deploy, so we can see how dev is + # doing before approving a prod deploy. + - cron: "49 13 * * 1,4" jobs: call-workflow: diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 49c1e66..4b0d128 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -2,6 +2,12 @@ name: Deploy to Prod on: workflow_dispatch: + push: + branches: ["main"] + schedule: + # Runs every Monday and Thursday at 15:39 UTC, which is either + # 10:49 AM or 11:49 AM ET, depending on Daylight Savings Time. + - cron: "49 15 * * 1,4" jobs: call-workflow: