From 302cabeecd1aee4a16e0e142033692c45eca84e6 Mon Sep 17 00:00:00 2001 From: Chris Bednarczyk Date: Tue, 30 Dec 2025 17:04:46 +0100 Subject: [PATCH] fix(ci): disable husky git hooks in semantic-release workflow - Set HUSKY=0 environment variable to disable git hooks in CI - Prevents commitlint from blocking semantic-release commits - Semantic-release commit messages can contain long URLs in changelog This fixes the 'body's lines must not be longer than 100 characters' error that was preventing semantic-release from creating release commits. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ca66e6..6aa2509 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,6 +36,7 @@ jobs: id: semantic env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + HUSKY: 0 run: | # Get current tags BEFORE_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "none")