From cc986d4922570b59cece612d73436edb30358e8c Mon Sep 17 00:00:00 2001 From: Lev Gusiev <89646710+BytecodeBrewer@users.noreply.github.com> Date: Sat, 13 Jun 2026 23:22:08 +0200 Subject: [PATCH] fix(#10): add condition to skip validation --- .github/workflows/commit-message.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/commit-message.yml b/.github/workflows/commit-message.yml index 7005242..cf6dff2 100644 --- a/.github/workflows/commit-message.yml +++ b/.github/workflows/commit-message.yml @@ -11,6 +11,7 @@ permissions: jobs: validate-commit-messages: name: Validate commit messages + if: github.actor != 'dependabot[bot]' runs-on: ubuntu-latest steps: @@ -48,4 +49,4 @@ jobs: echo "Allowed types:" echo " feat, fix, docs, style, refactor, test, chore, ci, build, perf" exit 1 - fi \ No newline at end of file + fi