From 85f81cf8b3d03388b73c91e7fc7cf031b040ab6e Mon Sep 17 00:00:00 2001 From: Lev Gusiev <89646710+BytecodeBrewer@users.noreply.github.com> Date: Sat, 13 Jun 2026 23:18:21 +0200 Subject: [PATCH] fix(10):Add condition to skip validation for dependabot --- .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