From b1801582a7f032e722e06dad13da1124d4f64499 Mon Sep 17 00:00:00 2001 From: Tarrgon <61888458+Tarrgon@users.noreply.github.com> Date: Tue, 12 May 2026 10:49:31 -0400 Subject: [PATCH] Match `pull` as well as `pr` --- src/utils/message-matcher-regex.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/message-matcher-regex.ts b/src/utils/message-matcher-regex.ts index 14b4345..6773f32 100644 --- a/src/utils/message-matcher-regex.ts +++ b/src/utils/message-matcher-regex.ts @@ -14,5 +14,5 @@ const tagSearchRegex = '(?:[\\S]| )+?'; export const wikiLinkRegex = new RegExp(`\\[\\[(${tagSearchRegex})]]`, 'gi'); export const searchLinkRegex = new RegExp(`{{(${tagSearchRegex})}}`, 'gi'); -export const prRegex = new RegExp('pr #([0-9]+)', 'gi'); +export const prRegex = new RegExp('(?:pr|pull) #([0-9]+)', 'gi'); export const issueRegex = new RegExp('issue #([0-9]+)', 'gi'); \ No newline at end of file