docs: fix broken relative links on schema marketplace page#9388
Open
petercrocker wants to merge 1 commit into
Open
docs: fix broken relative links on schema marketplace page#9388petercrocker wants to merge 1 commit into
petercrocker wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
No issues found across 1 file
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Shadow auto-approve: would auto-approve. This documentation-only change fixes three broken relative links by adding .mdx extensions, which resolves a build error and has no impact on any code, business logic, or infrastructure.
Re-trigger cubic
The Related resources links used extensionless relative paths (../overview, ../create-and-load, ../extensions). Because the page is an index.mdx, Docusaurus resolves these URL-relative against the /schema/marketplace route and overshoots to the site root, producing broken links (/create-and-load, /extensions) that fail the docs build. Add the .mdx extension so the links resolve file-relative, matching the existing convention used elsewhere in the same file.
1843a1e to
45c06f5
Compare
ajtmccarty
approved these changes
May 29, 2026
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.
Problem
The docs build (and the downstream
infrahub-docsaggregation build) fails with broken-link errors on the schema marketplace page:Cause
docs/docs/schema/marketplace/index.mdxis anindex.mdx, so its route is/schema/marketplace. The Related resources links used extensionless relative paths (../overview,../create-and-load,../extensions). Docusaurus resolves extensionless links URL-relative against the route, so a single../overshoots past/schema/to the site root, producing/create-and-loadand/extensions(which don't exist).../overviewhappened to resolve to the unrelated/overviewsection page, masking a third latent mis-link.Fix
Add the
.mdxextension so the links resolve file-relative to the sibling pages indocs/docs/schema/, matching the convention already used elsewhere in this same file (e.g. the prerequisites link to../../deploy-manage/install-configure/install/overview.mdx).Validation
Verified the corrected paths point at existing sibling files (
overview.mdx,create-and-load.mdx,extensions.mdx). The equivalent fix was confirmed to clear the broken-link build failure in theinfrahub-docsaggregation repo.Summary by cubic
Fix broken links on the Schema Marketplace page by adding
.mdxso Docusaurus resolves them file‑relative. Also adds LDAP login and auto‑create groups, moves merge to the database, and auto‑discovers migrations with a cleaner CLI.Written for commit 1843a1e. Summary will update on new commits.
Review in cubic