From 273444269db700a2471de4c4c23563957559cacc Mon Sep 17 00:00:00 2001 From: Srajan Asthana Date: Tue, 22 Sep 2026 12:27:25 +0530 Subject: [PATCH] Pin trueforge-clone-tfy-sandbox SHA in deploy-devtest sync. Include the sandbox service manifest alongside trueforge and controller so devtest deploys stay on the same commit. Co-authored-by: Cursor --- .github/workflows/deploy-devtest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-devtest.yml b/.github/workflows/deploy-devtest.yml index c247b1173..ce56d0b81 100644 --- a/.github/workflows/deploy-devtest.yml +++ b/.github/workflows/deploy-devtest.yml @@ -42,7 +42,7 @@ jobs: APP_SLUG: ${{ steps.app-token.outputs.app-slug }} run: | set -euo pipefail - for f in trueforge.truefoundry.yaml trueforge-controller.truefoundry.yaml; do + for f in trueforge.truefoundry.yaml trueforge-controller.truefoundry.yaml trueforge-clone-tfy-sandbox.truefoundry.yaml; do yq -i ' .image.build_source.ref = strenv(SHA) | .image.build_source.branch_name = strenv(BRANCH) @@ -51,7 +51,7 @@ jobs: git config user.name "${APP_SLUG}[bot]" git config user.email "${APP_SLUG}[bot]@users.noreply.github.com" - git add trueforge.truefoundry.yaml trueforge-controller.truefoundry.yaml + git add trueforge.truefoundry.yaml trueforge-controller.truefoundry.yaml trueforge-clone-tfy-sandbox.truefoundry.yaml if git diff --cached --quiet; then echo "Already pinned at $SHA" exit 0