From cf7ecb683fafd6ade60eabf04aedcf62a2c61405 Mon Sep 17 00:00:00 2001 From: David Fernandez Date: Mon, 20 Apr 2026 14:07:03 -0300 Subject: [PATCH 1/2] ci: skip branch and commit validation for release-please PRs release-please uses its own branch naming convention that doesn't follow the conventional branch pattern, causing false failures on automated PRs. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/validate-commits.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/validate-commits.yml b/.github/workflows/validate-commits.yml index 931e434..b3d6d90 100644 --- a/.github/workflows/validate-commits.yml +++ b/.github/workflows/validate-commits.yml @@ -7,9 +7,11 @@ 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 lint-charts: From 9b3b7eda2665e16ef794738aae96516359b21b78 Mon Sep 17 00:00:00 2001 From: David Fernandez Date: Mon, 20 Apr 2026 14:24:24 -0300 Subject: [PATCH 2/2] Revert "ci: skip branch and commit validation for release-please PRs" This reverts commit 9ede934cb3c2d4dbed4784ea6eecdda254a94f64. --- .github/workflows/validate-commits.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/validate-commits.yml b/.github/workflows/validate-commits.yml index b3d6d90..931e434 100644 --- a/.github/workflows/validate-commits.yml +++ b/.github/workflows/validate-commits.yml @@ -7,11 +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 lint-charts: