From d6bdd49929e84e3ba1cff9a382bbda201db0ecdf Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Sat, 5 Sep 2026 04:37:06 -0400 Subject: [PATCH] fix(release-please): match signoff identity to bot's actual GitHub name DCO rejects release-please's commits because the configured signoff name (Straw Hat Team Bot) doesn't match the bot account's real GitHub display name (SHT Bot), even though the email is correct. Signed-off-by: Yordis Prieto --- .github/.release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/.release-please-config.json b/.github/.release-please-config.json index feedff0..1a0d0fd 100644 --- a/.github/.release-please-config.json +++ b/.github/.release-please-config.json @@ -3,7 +3,7 @@ "release-type": "go", "include-v-in-tag": true, "include-component-in-tag": false, - "signoff": "Straw Hat Team Bot <61149376+sht-bot@users.noreply.github.com>", + "signoff": "SHT Bot <61149376+sht-bot@users.noreply.github.com>", "changelog-sections": [ { "type": "feat",