chore(i18n.yaml): update job condition to include sno-fix-playwright-babel branch for temporary Playwright issue fix

This commit is contained in:
snomiao
2025-09-18 07:13:36 +00:00
parent f4d21852eb
commit 6ef3650427

View File

@@ -11,7 +11,13 @@ 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-'))
# add sno-fix-playwright-babel temporarily to fix playwright issue with babel
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-babel')
runs-on: ubuntu-latest
steps:
- uses: Comfy-Org/ComfyUI_frontend_setup_action@v3