Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/actions/setup-nix/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ inputs:
description: "Skip uv sync step (useful for jobs that do not need Python dependencies)"
required: false
default: "false"
Comment on lines 9 to 11
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the skip-mock-server input will break the release workflow. The file .github/workflows/release.yaml still uses this input on line 31 with skip-mock-server: "true". This reference needs to be removed from the release workflow before this input can be safely removed from the action definition.

Copilot uses AI. Check for mistakes.
skip-mock-server:
description: "Skip MCP mock server dependencies installation (useful for jobs that do not run tests)"
required: false
default: "false"
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -46,7 +42,7 @@ runs:
run: uv sync --all-extras

- name: Install MCP mock server dependencies
if: inputs.skip-uv-sync != 'true' && inputs.skip-mock-server != 'true'
if: inputs.skip-uv-sync != 'true'
shell: bash
run: |
if [ -f vendor/stackone-ai-node/package.json ]; then
Expand Down