fix: correct repository URL casing to match canonical Kaelio org name (#188)

semantic-release pushes the release commit to whatever repository.url
holds, then GitHub 301-redirects the lowercase /kaelio/ktx.git to the
canonical /Kaelio/ktx.git. The redirect causes branch-protection actor
evaluation to misbehave (bypass list matches are lost). Pinning the
correct case avoids the redirect entirely.
This commit is contained in:
Andrey Avtomonov 2026-05-20 17:55:34 +02:00 committed by GitHub
parent 17647a436a
commit b43000f961
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,10 +70,10 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kaelio/ktx.git"
"url": "git+https://github.com/Kaelio/ktx.git"
},
"bugs": {
"url": "https://github.com/kaelio/ktx/issues"
"url": "https://github.com/Kaelio/ktx/issues"
},
"homepage": "https://github.com/kaelio/ktx#readme"
"homepage": "https://github.com/Kaelio/ktx#readme"
}