fix(docs): correct broken CHANGELOG links from /issues/ to /pull/ for PRs#767
Merged
Conversation
Contributor
|
Thank you for contributing to this project with this PR, welcome to the community and the amazing world of open source! |
…ll/ for PRs Lychee detected 2 broken links (502 errors) in CHANGELOG.md: - #24 → pull/24 - #189 → pull/189 Both #24 and #189 are pull requests, not issues, so the correct URL uses /pull/ instead of /issues/. Also fixes all other CHANGELOG entries where issue links were used for pull requests (confirmed via lychee's 302 redirect detection), replacing them with the canonical /pull/ URLs to eliminate redirect warnings. Genuine issue links (closes #XXX pattern) are preserved as-is. Agent-Logs-Url: https://github.com/dallay/corvus/sessions/10d02c35-0fc4-47a1-bd63-a27fa52f5d45 Co-authored-by: yacosta738 <33158051+yacosta738@users.noreply.github.com>
Deploying corvus with
|
| Latest commit: |
bd656c4
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://f15b611a.corvus-42x.pages.dev |
| Branch Preview URL: | https://copilot-fix-broken-links-rep.corvus-42x.pages.dev |
Copilot
AI
changed the title
[WIP] Fix broken links identified in docs
fix(docs): correct broken CHANGELOG links from /issues/ to /pull/ for PRs
May 3, 2026
yacosta738
approved these changes
May 4, 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.
Lychee reported 2 broken links (502 Bad Gateway) in
CHANGELOG.md— both pointed to/issues/24and/issues/189, which are pull requests, not issues.Changes
issues/24,issues/189) by updating to/pull/24and/pull/189(confirmed as PRs via GitHub API)/issues/Xbut redirecting to/pull/X(confirmed via lychee's 302 redirect report) — eliminates redirect warnings in future scanscloses #261,closes #536,closes #580–586) which are real tracked issues and correctly use/issues/All
issues/X → pull/Xsubstitutions share the same number, confirming these are PR references auto-generated by release-please from commit messages using the#Nshorthand.Related Issues
Summary
CHANGELOG.mdcontains release-please–generated links that reference merged PRs using the GitHub/issues/Xpath. GitHub normally 302-redirects these to/pull/X, but two (#24,#189) were returning 502, causing lychee to flag them as broken. All 123 confirmed-PR/issues/URLs in the changelog are updated to canonical/pull/paths.Tested Information
Verified via the lychee workflow run (
25271849999) log: 2 errors ([502]) and ~130 redirect entries ([302]). Post-fix grep confirms 0 remaining/issues/links for confirmed PRs; 19 genuine issue numbers preserved.Documentation Impact
CHANGELOG.mdBreaking Changes
None.
Checklist