From 1b0667eb6bcd1574666bad1b2b5bf0735ef8fc28 Mon Sep 17 00:00:00 2001 From: Grant Parry Date: Tue, 24 Feb 2026 16:49:46 -0700 Subject: [PATCH] fix: correct YAML indentation in copilot-setup-steps workflow The workflow had staircase indentation (each line indented further than the last), making it unparseable. All runs failed with zero jobs executed. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/copilot-setup-steps.yml | 36 +++++++++++------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 69d586c83..df03e4f76 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -3,25 +3,25 @@ name: Copilot Setup Steps on: workflow_call: - jobs: - copilot-setup: - runs-on: ubuntu-latest - environment: copilot - steps: - - name: Cleanup before git clone - run: rm -rf /home/runner/work/ruvector/ruvector - continue-on-error: true +jobs: + copilot-setup: + runs-on: ubuntu-latest + environment: copilot + steps: + - name: Cleanup before git clone + run: rm -rf /home/runner/work/ruvector/ruvector + continue-on-error: true - - name: Checkout repository - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '18' + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '18' - - name: Install ruvector dependencies - run: npm install -g ruvector + - name: Install ruvector dependencies + run: npm install -g ruvector - - name: Verify ruvector MCP - run: npx ruvector --version + - name: Verify ruvector MCP + run: npx ruvector --version