From 56109eccc07e1d4836d8527b94fb14a9341c3db4 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Fri, 16 May 2025 14:52:53 +1000 Subject: [PATCH] [CI] Add manual test frontend GH action (#1054) --- .github/workflows/test-comfyui-frontend.yml | 28 +++++++++++++-------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-comfyui-frontend.yml b/.github/workflows/test-comfyui-frontend.yml index a32cebd46..d8f416fb6 100644 --- a/.github/workflows/test-comfyui-frontend.yml +++ b/.github/workflows/test-comfyui-frontend.yml @@ -4,23 +4,30 @@ name: Test ComfyUI Frontend on: + workflow_dispatch: + inputs: + frontend-branch: + description: "Frontend branch" + required: true + default: "main" + push: branches: [main, master] paths-ignore: - - '.cursor/**' - - '.husky/**' - - '.vscode/**' - - '.github/ISSUE_TEMPLATE/**' - - 'test/**' + - ".cursor/**" + - ".husky/**" + - ".vscode/**" + - ".github/ISSUE_TEMPLATE/**" + - "test/**" pull_request: branches: [main, master] paths-ignore: - - '.cursor/**' - - '.husky/**' - - '.vscode/**' - - '.github/ISSUE_TEMPLATE/**' - - 'test/**' + - ".cursor/**" + - ".husky/**" + - ".vscode/**" + - ".github/ISSUE_TEMPLATE/**" + - "test/**" jobs: test-comfyui-frontend: @@ -43,6 +50,7 @@ jobs: with: repository: "Comfy-Org/ComfyUI_frontend" path: "ComfyUI_frontend" + ref: ${{ inputs.frontend-branch }} - name: Checkout ComfyUI_devtools uses: actions/checkout@v4