From 856e36b3ef30ff16c117a8e0fee743fdbd81047e Mon Sep 17 00:00:00 2001 From: ComfyUI Wiki Date: Wed, 1 Apr 2026 12:54:30 +0800 Subject: [PATCH] fix: use timestamp in branch name to avoid conflicts on re-run --- .github/workflows/translation-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translation-sync.yml b/.github/workflows/translation-sync.yml index ae74ed46..26c37a25 100644 --- a/.github/workflows/translation-sync.yml +++ b/.github/workflows/translation-sync.yml @@ -95,7 +95,7 @@ jobs: id: create_branch if: steps.check_changes.outputs.has_changes == 'true' run: | - BRANCH="i18n/sync-${{ steps.commits.outputs.short_sha }}" + BRANCH="i18n/sync-${{ steps.commits.outputs.short_sha }}-$(date +%Y%m%d%H%M%S)" git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" git checkout -b "$BRANCH"