mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
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
This commit is contained in:
4
.github/workflows/i18n-update-core.yaml
vendored
4
.github/workflows/i18n-update-core.yaml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user