From 89e687e2ee9bea17d3f03f8ef0c6f5ebeca68e10 Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov Date: Wed, 20 May 2026 17:53:30 +0200 Subject: [PATCH] fix: correct repository URL casing to match canonical Kaelio org name 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. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 3beebcb2..2a16bdd2 100644 --- a/package.json +++ b/package.json @@ -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" }