hotfix: fix mkdocs --strict broken link in ADR 0006#10
Merged
Conversation
The previous relative link `../plans/IMPLEMENTATION_PLAN.md` resolved locally because the file is on disk, but it is not tracked in git, so the docs.yml CI checkout has no copy and `mkdocs build --strict` aborted with WARNING. Switch to a GitHub-absolute URL to match the sibling refs (README.md, llms.txt, .claude/rules/untp-versioning.md). Resolves the docs.yml failure on commit 06ada77 (post-v0.5.1). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
The new `mkdocs build --strict` gate added in v0.5.1 caught one broken link on first deploy: ADR 0006 referenced `../plans/IMPLEMENTATION_PLAN.md` (a relative link). The file is on local disk but is not tracked in git, so the docs.yml CI checkout has no copy → mkdocs raised a WARNING → strict mode aborted with exit 1.
Result: docs.yml run 25630667456 failed; artiso-ai.github.io/dppvalidator is currently stuck at v0.5.0 content.
The fix is a one-line swap to a GitHub-absolute URL, matching the sibling refs in the same row (`README.md`, `llms.txt`, `.claude/rules/untp-versioning.md`).
Why no version bump
Pure build hygiene; nothing user-visible in the package changes. PyPI `0.5.1` already shipped clean; this only affects the published docs site.
Test plan
🤖 Generated with Claude Code