feat(ci): add docs automation workflow with Claude Code #6896
+266
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces an automated documentation workflow that keeps algolia/docs-new in sync with InstantSearch releases using the Claude Code CLI.
A sample PR generated by this workflow can be found here : https://github.com/algolia/docs-new/pull/507
How it works
Manual trigger options
The workflow supports
workflow_dispatchwith these inputs for testing:run_claudefalsecreate_prfalsemax_turns50Testing modes:
run_claudecreate_prFlavor mapping
Each InstantSearch package maps to a documentation file extension:
.js.mdx.react.mdx.vue.mdxRequired secrets
The following secrets are already configured in the repo:
ANTHROPIC_API_KEYDOCS_REPO_PATreposcope for docs-new accessTODO before enabling on master
docs-automationrepo(full control),read:org(for team reviewer)DOCS_REPO_PATsecret with the new tokenKey design decisions
Claude Code CLI over custom parsing - Claude can read and understand changelogs better than regex-based parsing, making the system more robust to format changes
Single PR per release - Instead of one PR per package, we create one consolidated PR that includes all documentation changes for a release
Draft PRs with team review - PRs are created as drafts and assigned to frontend-experiences-web for human review before merging
Safety limits - 15-minute timeout and configurable max turns prevent runaway executions
🤖 Generated with Claude Code