docs(site): fix strict-build failure — root-relative links (Pages deploy red since 07-08)#290
Conversation
The GitHub Pages deploy (docs.yml, mkdocs build --strict) has failed on every main push since 2026-07-08: PR #245 added two links from docs/guides/tuning.md to ../../BENCHMARK.md and PR #263's docs/PRODUCTION-CONTRACT.md links ../RELEASES.md, ../.github/workflows/release.yml and ../BENCHMARK.md — all repo-root files outside the MkDocs docs/ tree, each producing a strict-mode warning (5 total → abort). Convert the 5 links to absolute GitHub blob URLs, which strict mode does not validate. Verified locally: mkdocs build --strict completes with zero warnings (material + include-markdown + glightbox plugin set matching requirements-docs.txt). Docs-only; no code changes. author: Tin Dang
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
|
Warning Review limit reached
Next review available in: 21 seconds Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
The GitHub Pages deploy has failed on every main push since 2026-07-08 (docs.yml runs
mkdocs build --strict). Five links point at repo-root files outside the MkDocsdocs/tree, each a strict-mode warning → abort:docs/guides/tuning.md→../../BENCHMARK.md×2 (introduced by PR docs(tuning): durability + pub/sub enhancements in the tuning guide #245)docs/PRODUCTION-CONTRACT.md→../RELEASES.md,../.github/workflows/release.yml,../BENCHMARK.md(PR docs(release): refresh PRODUCTION-CONTRACT ledger + v1.0 release gate (H-5) #263)Fix: convert the 5 links to absolute GitHub blob URLs (strict mode doesn't validate external links). The published site now links to the canonical rendered files on GitHub instead of 404-ing.
Verification
Local
mkdocs build --strictwith the requirements-docs.txt plugin set (material, include-markdown, glightbox): zero warnings, built in 1.93s. Previously aborted with 5 warnings. Docs-only — no code paths touched; standard test/bench gates N/A.