From b1c6622825176476541576db351bb9e2791ceb52 Mon Sep 17 00:00:00 2001 From: snomiao Date: Fri, 12 Sep 2025 00:39:34 +0000 Subject: [PATCH] fix(revert): test-browser-exp changes test-browser-exp changes --- .github/workflows/test-browser-exp.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-browser-exp.yaml b/.github/workflows/test-browser-exp.yaml index efd1b1b93..63052c3e4 100644 --- a/.github/workflows/test-browser-exp.yaml +++ b/.github/workflows/test-browser-exp.yaml @@ -41,7 +41,9 @@ jobs: run: | git config --global user.name 'github-actions' git config --global user.email 'github-actions@github.com' + git fetch origin ${{ github.head_ref }} + git checkout -B ${{ github.head_ref }} origin/${{ github.head_ref }} git add browser_tests - git diff --cached --quiet || git commit -m "Update test expectations [skip ci]" + git commit -m "Update test expectations [skip ci]" git push origin HEAD:${{ github.head_ref }} working-directory: ComfyUI_frontend