From 83bfd145eee6914703dadc60df73b4bf552394a9 Mon Sep 17 00:00:00 2001 From: rithviknishad Date: Tue, 20 Aug 2024 12:09:37 +0530 Subject: [PATCH] correct default branch name --- .github/workflows/cypress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index e92b8af989d..f2f8fbd45cb 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -28,7 +28,7 @@ jobs: if [[ '${{ github.event.pull_request.base.ref }}' == 'staging' ]]; then echo "branch=staging" >> $GITHUB_OUTPUT else - echo "branch=main" >> $GITHUB_OUTPUT + echo "branch=develop" >> $GITHUB_OUTPUT fi - name: Checkout care 📥