Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kovsu committed Nov 6, 2024
1 parent 7d6a488 commit cbad3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export const isClosedIssue = (): boolean => {
}

const status = $(stateSelector)!.textContent!.trim();
return status === 'Closed';
return status === 'Closed' || status === 'Closed as not planned';
};

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

0 comments on commit cbad3da

Please sign in to comment.