From 0013afff7db76c7daaa0a7706f572d12e244519d Mon Sep 17 00:00:00 2001 From: "groombook-ci[bot]" Date: Sun, 29 Mar 2026 22:39:15 +0000 Subject: [PATCH] fix(ci): remove errant space in github.sha template expression Space in `github.sha ::7` caused workflow validation to fail on push events (0s run, no jobs). Fixes the template syntax so the SHA subexpression is `github.sha::7`. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b94a3ee..3db3773 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -210,7 +210,7 @@ jobs: - name: Deploy to groombook-dev env: - TAG: pr-${{ github.event.pull_request.number }}-${{ github.sha ::7}} + TAG: pr-${{ github.event.pull_request.number }}-${{ github.sha::7}} PR_NUM: ${{ github.event.pull_request.number }} run: | echo "Deploying images tagged $TAG to groombook-dev..."