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