Skip to content

Commit f92d446

Browse files
committed
Include "merged" status in isClosedConversation
1 parent a468e10 commit f92d446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export const isOpenConversation = (): boolean => {
300300

301301
export const isClosedConversation = (): boolean => {
302302
const status = getStateLabel();
303-
return status === 'Closed' || status === 'Closed as not planned';
303+
return status === 'Closed' || status === 'Closed as not planned' || status === 'Merged';
304304
};
305305

306306
export const isReleases = (url: URL | HTMLAnchorElement | Location = location): boolean => getRepo(url)?.path === 'releases';

0 commit comments

Comments
 (0)