From 64d5c3ec314b02106df2d82ffc85c2727a24e5bc Mon Sep 17 00:00:00 2001 From: David Fernandez Date: Wed, 22 Apr 2026 14:44:57 -0300 Subject: [PATCH] fix(ci): skip branch validation and commitlint for release-please branches Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/commitlint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 82c31797..ad9a15fb 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -7,7 +7,9 @@ on: jobs: branch-name: + if: ${{ !startsWith(github.head_ref, 'release-please--') }} uses: nullplatform/actions-nullplatform/.github/workflows/branch-validation.yml@main commitlint: + if: ${{ !startsWith(github.head_ref, 'release-please--') }} uses: nullplatform/actions-nullplatform/.github/workflows/conventional-commit.yml@main