From 7ed9d50f439593df9abacefc814c3341ba16b333 Mon Sep 17 00:00:00 2001 From: shaurye Date: Fri, 14 Aug 2026 10:28:05 -0400 Subject: [PATCH] @W-23849761 | Wire registry locale validation into 26.9 CI The forward-integration bot promoted the locale-validation scripts and required-bm-locales.txt to release/26.9 (#119) but could not push .github/workflows/** under GITHUB_TOKEN, leaving the validators on 26.9 with nothing invoking them. Restore the workflow wiring to match release/26.8: - verify-zip.yml: add Step 10 to run validate-registry-translations.sh and add commerce-apps-manifest/translations/** and .github/config/** path triggers - test-scripts.yml: add .github/config/** path trigger Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/test-scripts.yml | 1 + .github/workflows/verify-zip.yml | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/test-scripts.yml b/.github/workflows/test-scripts.yml index 9305181..39631ec 100644 --- a/.github/workflows/test-scripts.yml +++ b/.github/workflows/test-scripts.yml @@ -5,6 +5,7 @@ on: types: [opened, reopened, synchronize] paths: - '.github/scripts/**' + - '.github/config/**' jobs: test-scripts: diff --git a/.github/workflows/verify-zip.yml b/.github/workflows/verify-zip.yml index 5f2dad1..2126d6e 100644 --- a/.github/workflows/verify-zip.yml +++ b/.github/workflows/verify-zip.yml @@ -5,6 +5,8 @@ on: types: [opened, reopened, synchronize, edited, ready_for_review] paths: - '**/*.zip' + - 'commerce-apps-manifest/translations/**' + - '.github/config/**' jobs: verify-zips: @@ -569,3 +571,9 @@ jobs: rm -rf "$tmpdir" done < changed_zips.txt + + - name: Step 10 - Validate registry translation locale files + shell: bash + run: | + bash ".github/scripts/validate-registry-translations.sh" \ + "commerce-apps-manifest/translations"