fix: use valid git repository URL format in cookiecutter templates#341
Open
v0idheaven wants to merge 1 commit into
Open
fix: use valid git repository URL format in cookiecutter templates#341v0idheaven wants to merge 1 commit into
v0idheaven wants to merge 1 commit into
Conversation
davisagli
requested changes
Feb 20, 2026
Member
davisagli
left a comment
There was a problem hiding this comment.
__repository_git is used in multiple places and they may not all expect the same format. This needs a more careful analysis.
Member
Author
|
Hi @davisagli, thank you for the feedback! Could you help me understand which specific places expect a different format? I'll update the fix to only change the files where the git+https:// format is appropriate. |
Member
|
@v0idheaven I don't have time to do this analysis myself at the moment. |
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.
What this does
Fixes the invalid git repository URL format generated in cookiecutter templates.
Changed from SSH format
git@github.com:org/repoto valid URI formatgit+https://github.com/org/repo.gitApplied across all cookiecutter templates in the repo.
Why
The old format fails URI schema validation in tools like Dependency Track.
Closes #263