From 6c5f17a0aa758c941ac1baae018284da1a45f0cf Mon Sep 17 00:00:00 2001 From: snomiao Date: Fri, 12 Sep 2025 08:26:50 +0000 Subject: [PATCH] chore(i18n.yaml): update job condition to include sno-fix-playwright- branches for locale updates --- .github/workflows/i18n.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/i18n.yaml b/.github/workflows/i18n.yaml index d7df815ff..0f6733c55 100644 --- a/.github/workflows/i18n.yaml +++ b/.github/workflows/i18n.yaml @@ -7,11 +7,10 @@ on: pull_request: branches: [ main ] types: [opened, synchronize, reopened] - 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-') || startsWith(github.head_ref, 'sno-fix-playwright-'))) runs-on: ubuntu-latest steps: - uses: Comfy-Org/ComfyUI_frontend_setup_action@v3