From 84ba7a6837ead036a88a0fe1642486c2edf38e32 Mon Sep 17 00:00:00 2001 From: snomiao Date: Wed, 8 Oct 2025 22:40:34 +0000 Subject: [PATCH] refactor: rename not_build to skip_build in setup-frontend action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Improves clarity by using positive naming convention for the parameter. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/actions/setup-frontend/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-frontend/action.yml b/.github/actions/setup-frontend/action.yml index 0c06e2274..04aaddfc0 100644 --- a/.github/actions/setup-frontend/action.yml +++ b/.github/actions/setup-frontend/action.yml @@ -1,7 +1,7 @@ name: Build ComfyUI Frontend description: 'Install dependencies and build ComfyUI_frontend' inputs: - not_build: + skip_build: description: 'Skip building the frontend' required: false default: 'false' @@ -39,7 +39,7 @@ runs: shell: bash run: pnpm install --frozen-lockfile - - name: Build ComfyUI_frontend if needed - if: ${{ inputs.not_build != 'true' }} + - name: Build ComfyUI_frontend + if: ${{ inputs.skip_build != 'true' }} shell: bash run: pnpm build