From e4bc2946814bc6e5c0439fc225f67f902f7a1e34 Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 3 Sep 2025 20:20:36 +0000 Subject: [PATCH] [bugfix] Remove sno-fix branch condition from i18n workflow This condition was added for testing but should not be included in the final PR as it would trigger unneeded locale updates. --- .github/workflows/i18n.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/i18n.yaml b/.github/workflows/i18n.yaml index 33efaa4b6..d7df815ff 100644 --- a/.github/workflows/i18n.yaml +++ b/.github/workflows/i18n.yaml @@ -11,7 +11,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-')) || startsWith(github.head_ref, 'sno-fix') + if: github.event_name == 'workflow_dispatch' || (github.event.pull_request.head.repo.full_name == github.repository && startsWith(github.head_ref, 'version-bump-')) runs-on: ubuntu-latest steps: - uses: Comfy-Org/ComfyUI_frontend_setup_action@v3