Conversation
Member
Author
|
waiting for #2050 |
SkalskiP
requested changes
Jan 12, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #2061 +/- ##
=======================================
Coverage 71% 71%
=======================================
Files 61 61
Lines 7152 7152
=======================================
Hits 5106 5106
Misses 2046 2046 🚀 New features to boost your workflow:
|
This reverts commit bd2edcc.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR converts hardcoded GitHub blob URLs in markdown files to relative links, and introduces a script to augment these relative links back to GitHub URLs during the package build process. This approach allows for better maintainability of documentation while ensuring published documentation still contains full GitHub URLs.
Changes:
- Convert GitHub blob URLs to relative links in markdown documentation files
- Add a Python script to augment relative links to GitHub URLs during builds
- Integrate the augmentation script into the package build workflow
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| docs/index.md | Converted 4 GitHub blob URLs for LICENSE.md to relative paths (../LICENSE.md) |
| README.md | Converted GitHub URLs to relative paths for LICENSE.md, examples directory, and CONTRIBUTING.md |
| CONTRIBUTING.md | Converted GitHub blob URL for LICENSE.md to relative path (./LICENSE.md) |
| .github/scripts/augment_links.py | New Python script to convert relative links in markdown files to GitHub blob/tree URLs |
| .github/workflows/build-package.yml | Added workflow step to run the augmentation script on README.md before building package |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Borda
commented
Feb 2, 2026
Borda
commented
Feb 2, 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.
This pull request standardizes and simplifies the way internal documentation and badges link to the project's license and other files, switching from absolute GitHub URLs to relative paths. It also introduces a script to augment relative links in markdown files to point directly to GitHub URLs, and updates the build workflow to use this script for the
README.md. These changes improve maintainability and ensure that links work both locally and on GitHub.Link standardization and simplification:
README.mdanddocs/index.mdto use relative paths instead of full GitHub URLs, making them more robust and easier to maintain. [1] [2] [3] [4] [5] [6]CONTRIBUTING.mdto use a relative path, aligning it with the new standard.README.mdto use a relative path.Automation and workflow improvements:
.github/scripts/augment_links.py, which converts relative links in markdown files to GitHub URLs, automating link management in documentation..github/workflows/build-package.yml) to run a script that augments paths in theREADME.md, ensuring that links are correctly formatted before distribution.