From 33549c2d673a7307c45c6a5dadff7750c8b95849 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com.> Date: Thu, 17 Jul 2025 00:34:08 +0100 Subject: [PATCH] fix for deploy --- .github/workflows/PR-Auto-Deploy-V2.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/PR-Auto-Deploy-V2.yml b/.github/workflows/PR-Auto-Deploy-V2.yml index fc5a0ae61..9d0ada9ad 100644 --- a/.github/workflows/PR-Auto-Deploy-V2.yml +++ b/.github/workflows/PR-Auto-Deploy-V2.yml @@ -59,8 +59,7 @@ jobs: # If PR is targeting V2 and user is authorized, deploy unconditionally PR_BASE_BRANCH="${{ github.event.pull_request.base.ref }}" - if [[ "$PR_BASE_BRANCH" == - "V2" && "$is_authorized" == "true" ]]; then + 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