diff --git a/index.ts b/index.ts index 57eede6..e3b0b1a 100644 --- a/index.ts +++ b/index.ts @@ -300,7 +300,7 @@ export const isOpenConversation = (): boolean => { export const isClosedConversation = (): boolean => { const status = getStateLabel(); - return status === 'Closed' || status === 'Closed as not planned'; + return status === 'Closed' || status === 'Closed as not planned' || status === 'Merged'; }; export const isReleases = (url: URL | HTMLAnchorElement | Location = location): boolean => getRepo(url)?.path === 'releases';