Fix dead relative link to versioning docs in bump-version skill - #1807
Open
latent-9 wants to merge 1 commit into
Open
Fix dead relative link to versioning docs in bump-version skill#1807latent-9 wants to merge 1 commit into
latent-9 wants to merge 1 commit into
Conversation
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.
The
bump-versionskill links to the versioning policy with a relative path that does not exist:From
.github/skills/bump-version/references/, that resolves todocs/versioning.htmlat the repo root, and there is no such file.docs/holds the DocFX sources (CONTRIBUTING.md: "This project uses DocFX to generate its conceptual and reference documentation"), so.htmlis build output that never gets committed. The only file there isdocs/versioning.md, so the link 404s on GitHub.The
.htmlextension looks like it was copied from line 7 of the same file, which correctly uses the absolute site URLhttps://csharp.sdk.modelcontextprotocol.io/versioning.html. That line is left untouched.Two other skill files already refer to the policy by its repo path, both writing it as
docs/versioning.md:.github/skills/breaking-changes/references/classification.md:68.github/skills/prepare-release/SKILL.md:183Only the relative link is changed.