From e4742d77e2ce0745e54cead3f98d48c78260dc3b Mon Sep 17 00:00:00 2001 From: null-paorodrigues Date: Mon, 8 Jun 2026 16:13:41 -0300 Subject: [PATCH] ci: skip branch-name and commitlint checks for dependabot PRs --- .github/workflows/commitlint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index ad9a15fb..b6fb2b13 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -7,9 +7,9 @@ on: jobs: branch-name: - if: ${{ !startsWith(github.head_ref, 'release-please--') }} + if: ${{ !startsWith(github.head_ref, 'release-please--') && !startsWith(github.head_ref, 'dependabot/') }} uses: nullplatform/actions-nullplatform/.github/workflows/branch-validation.yml@main commitlint: - if: ${{ !startsWith(github.head_ref, 'release-please--') }} + if: ${{ !startsWith(github.head_ref, 'release-please--') && !startsWith(github.head_ref, 'dependabot/') }} uses: nullplatform/actions-nullplatform/.github/workflows/conventional-commit.yml@main