From e2a10b0594fe1e973bba640c1e6e233be3ea4e91 Mon Sep 17 00:00:00 2001 From: snomiao Date: Mon, 1 Dec 2025 22:44:30 +0000 Subject: [PATCH] chore(i18n-update-core.yaml): update branch filter to include all branches matching sno-* for better flexibility chore(i18n-update-core.yaml): modify job condition to run on push events for improved automation --- .github/workflows/i18n-update-core.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/i18n-update-core.yaml b/.github/workflows/i18n-update-core.yaml index 88cb2435d..85a9f58ab 100644 --- a/.github/workflows/i18n-update-core.yaml +++ b/.github/workflows/i18n-update-core.yaml @@ -11,12 +11,12 @@ on: push: branches: - - sno-babel-define # REMOVE BEFORE MERGE - test branch for debugging + - sno-* # REMOVE BEFORE MERGE - test branch for debugging jobs: update-locales: # Branch detection: Only run for manual dispatch or version-bump-* branches from main repo - if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.head.repo.full_name == github.repository && startsWith(github.head_ref, 'version-bump-')) + if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.head.repo.full_name == github.repository && startsWith(github.head_ref, 'version-bump-')) || (github.event_name == 'push') runs-on: ubuntu-latest steps: - name: Checkout repository