From 4b15cc35965d4dd80020827338302f41d1c5ae42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Mikul=C3=A1=C5=A1ek?= Date: Thu, 14 Nov 2024 13:54:04 +0100 Subject: [PATCH] fix(commit-lint): do not check length for bump JIRA: STL-894 --- .github/workflows/commit-lint-shell.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-lint-shell.yaml b/.github/workflows/commit-lint-shell.yaml index 74be26e..45ff354 100644 --- a/.github/workflows/commit-lint-shell.yaml +++ b/.github/workflows/commit-lint-shell.yaml @@ -39,7 +39,7 @@ jobs: COMMIT_VIOLATIONS+=":x: does not follow Conventional Commits guidelines\n" fi - if [[ ! "$COMMIT_SUBJECT" =~ ^chore\(deps\): ]] && [[ ${#COMMIT_SUBJECT} -gt 70 ]]; then + if [[ ! "$COMMIT_SUBJECT" =~ ^chore(\(deps\):|:[[:space:]]bump) ]] && [[ ${#COMMIT_SUBJECT} -gt 70 ]]; then COMMIT_VIOLATIONS+=":x: exceeds 70 characters\n" fi