Skip to content

Commit

Permalink
fix(release): Don't validate single commit for semanticity
Browse files Browse the repository at this point in the history
This usually fails for commits by tools that don't adhere to our requirements as the commit message is concerned. For example PRs like this one: #3714
As our changelog generation script only uses PR titles to begin with, we don't need this safeguard to lint single commit PRs on their commits as well.
  • Loading branch information
ansgarm authored Aug 26, 2024
1 parent 4f8c0c9 commit da70301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# will suggest using that commit message instead of the PR title for the
# merge commit, and it's easy to commit this by mistake. Enable this option
# to also validate the commit message for one commit PRs.
validateSingleCommit: true
validateSingleCommit: false

subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}" does not match the required format.
Expand Down

0 comments on commit da70301

Please sign in to comment.