Single commit pull requests with commitTitleMatch: true would check equality between the PR title and the entire commit message. This causes a failure for commit messages that contain a body.
This change alters the comparison so the PR title is compared with the commit subject only, allowing commits with a body to pass the check.
Review Checklist
PR titles must follow the type: description format. See Conventional Commits for a summary and examples.
Please complete these steps before requesting code review:
[x] This PR provides a description, testing steps, and adequate context for reviewers
[x] Unit tests added/updated to provide coverage for functional code changes in this PR
12
Single commit pull requests with
commitTitleMatch: true
would check equality between the PR title and the entire commit message. This causes a failure for commit messages that contain a body.This change alters the comparison so the PR title is compared with the commit subject only, allowing commits with a body to pass the check.
Review Checklist
PR titles must follow the
type: description
format. See Conventional Commits for a summary and examples.Please complete these steps before requesting code review: