diff --git a/.github/workflows/prod-deploy-cron.yml b/.github/workflows/prod-deploy-cron.disabled similarity index 100% rename from .github/workflows/prod-deploy-cron.yml rename to .github/workflows/prod-deploy-cron.disabled diff --git a/.github/workflows/prod-service-restart-cron.yml b/.github/workflows/prod-service-restart-cron.yml new file mode 100644 index 0000000000..8cd9247cb4 --- /dev/null +++ b/.github/workflows/prod-service-restart-cron.yml @@ -0,0 +1,16 @@ +name: Production Service Restart Cron + +on: + schedule: + - cron: "0 20 * * 1-5" # Deploys every weekday at 8pm UTC + +concurrency: + group: deploy-production + cancel-in-progress: false + +jobs: + deploy-production: + uses: ./.github/workflows/deploy-service-restart.yml + with: + environment: production + secrets: inherit