Skip to content

Commit 189c45f

Browse files
authored
fix(workflows): update docs-sync staging path after shell restructure (CopilotKit#4117)
## Summary - Docs Sync workflow has been failing since 2026-04-21 with `fatal: pathspec 'showcase/shell/src/content/' did not match any files` (exit 128) on the "Create PR for docs sync" step (example: run 24726678848). - The path was moved by the shell platform restructure (CopilotKit#4109, CopilotKit#4112) — the docs content now lives under `showcase/shell-docs/src/content/`, and the sync marker at `showcase/shell-docs/.docs-sync-sha`. The sync script (`showcase/scripts/sync-docs-from-main.ts`) already writes to those locations; only the workflow's `git add` was still referencing the old monolithic `showcase/shell/` path. - One-line path fix. ## Test plan - [ ] Verify yaml parses. - [ ] Confirm next docs-sync run succeeds end-to-end (opens a sync PR for the 11 pending review items from run 24726678848).
2 parents f703e69 + 51afc38 commit 189c45f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/showcase_docs-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
186186
# Stage AFTER manifest has been applied so conflicted files land
187187
# in the commit.
188-
git add showcase/shell/src/content/ showcase/shell/.docs-sync-sha
188+
git add showcase/shell-docs/src/content/ showcase/shell-docs/.docs-sync-sha
189189
CHANGED=$(git diff --cached --name-only | wc -l | tr -d ' ')
190190
191191
if [ "$CHANGED" = "0" ]; then

0 commit comments

Comments
 (0)