refactor: rename not_build to skip_build in setup-frontend action

Improves clarity by using positive naming convention for the parameter.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
snomiao
2025-10-08 22:40:34 +00:00
parent ca77c48957
commit 84ba7a6837

View File

@@ -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