fix: properly parse special characters in repo URL#127
Conversation
|
Could you write out some test cases you've been testing with? |
|
@wei Edited the original post. 👆🏽 |
|
Actually the only unusual character in our repo name is the dot. That is common to lots of repository names. (Also the |
It is indeed. But that was already handled by the regex I've previously written in Edit: |
|
Ah, i understand now. Also a very common repo name to contain Anyway, thanks again for this wonderful Action. It makes our life so much easier. |
|
amazing, thanks for the fix. This is now released as |
This PR adds the ability to parse any character included in the repo owner's name and the repo name.
Fixes #126.
The test log is available here. The repo name used for the test contains all sorts of allowed nasty special characters 😁. This test additionally covers the edge case where
.gitalso happens to be in the middle of the repo name (the actual reason for the run mentioned in #126 to fail).