From 8f78c5145f1fc7eb9c5c67bfac93d7001b58aad7 Mon Sep 17 00:00:00 2001 From: Dean Sheather Date: Fri, 20 Mar 2026 00:52:30 +1100 Subject: [PATCH] chore: force deploying to dogfood from main (#23290) Always deploy from main for now. We want to keep testing commits to main as soon as they're merged, so we're going to disable the release freezing behavior. We will test cut releases on a separate deployment, upgraded manually. --- scripts/should_deploy.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/should_deploy.sh b/scripts/should_deploy.sh index 6259f9e109..65eb693f17 100755 --- a/scripts/should_deploy.sh +++ b/scripts/should_deploy.sh @@ -58,6 +58,10 @@ else fi log "Deploy branch: $deploy_branch" +# TODO: remove this temporary override +log "OVERRIDE: forcing main as deploy branch" +deploy_branch=main + # Finally, check if the current branch is the deploy branch. log if [[ "$branch_name" != "$deploy_branch" ]]; then