ci: deploy docs via GitHub Actions to py.sdk.modelcontextprotocol.io #2632
+61
−36
Claude / Claude Code Review
completed
May 18, 2026 in 2m 50s
Code review found 1 potential issue
Found 5 candidates, confirmed 1. See review comments for details.
Details
| Severity | Count |
|---|---|
| 🔴 Important | 0 |
| 🟡 Nit | 1 |
| 🟣 Pre-existing | 0 |
| Severity | File:Line | Issue |
|---|---|---|
| 🟡 Nit | .github/workflows/deploy-docs.yml:9-11 |
cancel-in-progress: true contradicts GitHub Pages deployment guidance |
Annotations
Check warning on line 11 in .github/workflows/deploy-docs.yml
claude / Claude Code Review
cancel-in-progress: true contradicts GitHub Pages deployment guidance
GitHub's official Pages starter workflows set `cancel-in-progress: false` for the deploy concurrency group, with the rationale that production Pages deployments should be allowed to complete rather than be cancelled mid-flight — and the TypeScript SDK workflow this PR cites as prior art does the same. Consider flipping this to `false` so a second push to `main` queues behind an in-progress deploy instead of cancelling it.
Loading