From 82192d25869392b38e5875a88e19ad47afb07c20 Mon Sep 17 00:00:00 2001 From: Brian Reardon Date: Tue, 25 Nov 2025 09:49:50 -0800 Subject: [PATCH 1/2] manual tagging for backend-ee --- .github/workflows/auto-tag-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-tag-and-release.yml b/.github/workflows/auto-tag-and-release.yml index b3b820de6..5b3980650 100644 --- a/.github/workflows/auto-tag-and-release.yml +++ b/.github/workflows/auto-tag-and-release.yml @@ -143,7 +143,7 @@ jobs: tag-backend-ee: needs: detect-changes - if: needs.detect-changes.outputs.backend_ee_changed == 'true' + if: false # Disabled - manual tagging only runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 From 43d07ab713dd19ffa4fc3ca81861189f95a9ca04 Mon Sep 17 00:00:00 2001 From: Brian Reardon Date: Tue, 25 Nov 2025 09:54:54 -0800 Subject: [PATCH 2/2] instead exit early on helm update --- .github/workflows/auto-tag-and-release.yml | 2 +- .github/workflows/update-helm-on-release.yml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-tag-and-release.yml b/.github/workflows/auto-tag-and-release.yml index 5b3980650..b3b820de6 100644 --- a/.github/workflows/auto-tag-and-release.yml +++ b/.github/workflows/auto-tag-and-release.yml @@ -143,7 +143,7 @@ jobs: tag-backend-ee: needs: detect-changes - if: false # Disabled - manual tagging only + if: needs.detect-changes.outputs.backend_ee_changed == 'true' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/update-helm-on-release.yml b/.github/workflows/update-helm-on-release.yml index c4d4d25f0..09a37f62c 100644 --- a/.github/workflows/update-helm-on-release.yml +++ b/.github/workflows/update-helm-on-release.yml @@ -32,6 +32,8 @@ jobs: SERVICE="backend-ee" VERSION="${TAG_NAME##backend-ee/}" YAML_PATH=".taco-orchestrator.digger.image.tag" + echo "Backend EE detected - skipping helm update (disabled for manual control)" + exit 0 elif [[ $TAG_NAME == drift/v* ]]; then SERVICE="drift" VERSION="${TAG_NAME##drift/}"