From 649aad9b203b9e10505079b85558bfdc83c766b8 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Sat, 17 Feb 2024 11:22:33 -0500 Subject: [PATCH] chore: reference #174 in code comment --- src/getCommitMeaning.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/getCommitMeaning.ts b/src/getCommitMeaning.ts index 3e250b46..52243d9f 100644 --- a/src/getCommitMeaning.ts +++ b/src/getCommitMeaning.ts @@ -10,6 +10,7 @@ const releaseCommitTester = export function getCommitMeaning(message: string) { // Some types are always meaningful or ignored, regardless of potentially release-like messages // options from https://github.com/conventional-changelog/conventional-changelog/issues/648#issuecomment-704867077 + // https://github.com/JoshuaKGoldberg/should-semantic-release/issues/174 const { notes, type } = conventionalCommitsParser.sync(message, { breakingHeaderPattern: /^(\w*)(?:\((.*)\))?!: (.*)$/, } as object);