From 097c2add604aa4ffbda77eb2ef15496f4f92d12b Mon Sep 17 00:00:00 2001 From: snomiao Date: Mon, 1 Dec 2025 22:43:53 +0000 Subject: [PATCH] chore(i18n-update-core.yaml): update workflow condition to trigger on push events for better automation --- .github/workflows/i18n-update-core.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/i18n-update-core.yaml b/.github/workflows/i18n-update-core.yaml index ee881937a..b7e4db84f 100644 --- a/.github/workflows/i18n-update-core.yaml +++ b/.github/workflows/i18n-update-core.yaml @@ -16,7 +16,7 @@ on: 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