Skip to content

Commit

Permalink
chore(commit-lint): do not check merge commits
Browse files Browse the repository at this point in the history
JIRA: STL-894
  • Loading branch information
jimirocks committed Nov 18, 2024
1 parent 93ea5a3 commit 717aa35
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:
CONVENTIONAL_REGEX="^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.+\))?!?: .{1,70}"
# Get commit subjects and hashes
COMMITS=$(git log --reverse --pretty=format:"%h %s" ${{ steps.set_commit_range.outputs.commit_range }})
COMMITS=$(git log --reverse --no-merges --pretty=format:"%h %s" ${{ steps.set_commit_range.outputs.commit_range }})
# Initialize violation flag and message
VIOLATIONS=""
Expand Down

0 comments on commit 717aa35

Please sign in to comment.