From 645c54abcddaecb929fb52f850e08c5e0d93691f Mon Sep 17 00:00:00 2001 From: Nickolas Dimitrakas Date: Mon, 30 Mar 2026 14:54:36 -0400 Subject: [PATCH] chore: remove main branch push from staging step 3 workflow Remove the `git push origin HEAD:main` command from the staging release synchronization workflow. The comment is updated to note that we will eventually migrate from master to main. Made-with: Cursor --- .github/workflows/staging-step-3.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/staging-step-3.yml b/.github/workflows/staging-step-3.yml index 0ed591439..9121f401e 100644 --- a/.github/workflows/staging-step-3.yml +++ b/.github/workflows/staging-step-3.yml @@ -27,11 +27,10 @@ jobs: run: | git push origin HEAD:development - # We will eventually replace master with main - - name: Push release commits to main and master + # We will eventually migrate from master to main + - name: Push release commits to master run: | git push origin HEAD:master - git push origin HEAD:main - name: Push release commits to Release Order Branches run: |