Skip to content

Commit

Permalink
chore: clean
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Feb 15, 2024
1 parent 573c841 commit df62789
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/getCommitMeaning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export function getCommitMeaning(message: string) {
const { notes, type } = conventionalCommitsParser.sync(message, {
// @ts-expect-error - options from https://github.com/conventional-changelog/conventional-changelog/issues/648#issuecomment-704867077
breakingHeaderPattern: /^(\w*)(?:\((.*)\))?!: (.*)$/,
headerPattern: /^(\w*)(?:\((.*)\))?!?: (.*)$/,
});
if (notes.some((note) => note.title.match(/^BREAKING[ -]CHANGE$/))) {
return "meaningful";
Expand Down

0 comments on commit df62789

Please sign in to comment.