Skip to content

Commit 3d8a83e

Browse files
authored
ci(showcase): disable auto docs-sync ahead of shell-docs cutover (CopilotKit#4831)
## Summary Shell-docs is becoming the canonical authoring source for CopilotKit documentation on the upcoming cutover. The existing \`showcase_docs-sync.yml\` workflow auto-syncs from \`docs/content/docs/\` down to \`showcase/shell-docs/src/content/docs/\` on every push to main that touches the upstream tree — which would clobber edits made directly in \`showcase/shell-docs/\` after cutover. This PR disables the push trigger on \`.github/workflows/showcase_docs-sync.yml\` and keeps \`workflow_dispatch\` for manual re-run if the cutover is reverted. ## Files changed - \`.github/workflows/showcase_docs-sync.yml\` — 5 lines ## Test plan - [ ] Confirm the workflow no longer fires on pushes to main that touch \`docs/content/docs/**\` or \`docs/snippets/**\` - [ ] Confirm \`workflow_dispatch\` still allows manual runs from the Actions UI
2 parents 83e1911 + d84c177 commit 3d8a83e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/showcase_docs-sync.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: "Showcase: Docs Sync"
22

33
on:
4-
push:
5-
branches: [main]
6-
paths:
7-
- "docs/content/docs/**"
8-
- "docs/snippets/**"
4+
# Auto-trigger disabled ahead of the shell-docs cutover (2026-05-19).
5+
# Shell-docs is becoming the canonical authoring source; an upstream→shell
6+
# sync would clobber edits made directly in showcase/shell-docs/. Re-enable
7+
# only if the cutover is reverted and docs/content/docs/ becomes upstream
8+
# again. Manual runs remain available via workflow_dispatch.
99
workflow_dispatch:
1010

1111
permissions:

0 commit comments

Comments
 (0)