Skip to content

Commit

Permalink
Merge pull request #15 from gooddata/jimi/lint
Browse files Browse the repository at this point in the history
fix(commit-lint): do not check length for bump
  • Loading branch information
jimirocks authored Nov 14, 2024
2 parents 79a4ac1 + 4b15cc3 commit 86bccac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint-shell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 86bccac

Please sign in to comment.