From a5731d3a68ad881a9822146ca4ad830824e460a9 Mon Sep 17 00:00:00 2001 From: Orkun Duman Date: Sun, 22 Mar 2026 00:29:21 -0400 Subject: [PATCH] Fix YAML linter error: nested mapping in compact sequence entries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Having "Run: bun" inside a plain scalar is not allowed per YAML spec which states: Plain scalars must never contain the “: ” and “ #” character combinations. This simple fix switches to block scalars (|) to eliminate the ambiguity without changing runtime behavior. --- .github/workflows/skill-docs.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/skill-docs.yml b/.github/workflows/skill-docs.yml index ebb6c808..8f8d11ab 100644 --- a/.github/workflows/skill-docs.yml +++ b/.github/workflows/skill-docs.yml @@ -9,7 +9,9 @@ jobs: - run: bun install - name: Check Claude host freshness run: bun run gen:skill-docs - - run: git diff --exit-code || (echo "Generated SKILL.md files are stale. Run: bun run gen:skill-docs" && exit 1) + - run: | + git diff --exit-code || (echo "Generated SKILL.md files are stale. Run: bun run gen:skill-docs" && exit 1) - name: Check Codex host freshness run: bun run gen:skill-docs --host codex - - run: git diff --exit-code -- .agents/ || (echo "Generated Codex SKILL.md files are stale. Run: bun run gen:skill-docs --host codex" && exit 1) + - run: | + git diff --exit-code -- .agents/ || (echo "Generated Codex SKILL.md files are stale. Run: bun run gen:skill-docs --host codex" && exit 1)