From a35956d92763c959e993841af3b4986e944f94c3 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com.> Date: Wed, 16 Jul 2025 23:42:38 +0100 Subject: [PATCH] V2 --- .github/workflows/PR-Auto-Deploy-V2.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/PR-Auto-Deploy-V2.yml b/.github/workflows/PR-Auto-Deploy-V2.yml index d8df89585..fc5a0ae61 100644 --- a/.github/workflows/PR-Auto-Deploy-V2.yml +++ b/.github/workflows/PR-Auto-Deploy-V2.yml @@ -57,10 +57,11 @@ jobs: fi done - # If PR is targeting feature/react-overhaul and user is authorized, deploy unconditionally + # If PR is targeting V2 and user is authorized, deploy unconditionally PR_BASE_BRANCH="${{ github.event.pull_request.base.ref }}" - if [[ "$PR_BASE_BRANCH" == "feature/react-overhaul" && "$is_authorized" == "true" ]]; then - echo "✅ Deployment forced: PR targets feature/react-overhaul and author is authorized." + if [[ "$PR_BASE_BRANCH" == + "V2" && "$is_authorized" == "true" ]]; then + echo "✅ Deployment forced: PR targets V2 and author is authorized." echo "should_deploy=true" >> $GITHUB_OUTPUT exit 0 fi