diff --git a/packages/app/src/components/catalog/EntityPage.tsx b/packages/app/src/components/catalog/EntityPage.tsx
index 393ffe2631..d3e25238c7 100644
--- a/packages/app/src/components/catalog/EntityPage.tsx
+++ b/packages/app/src/components/catalog/EntityPage.tsx
@@ -54,6 +54,10 @@ import {
LastLighthouseAuditCard,
isPluginApplicableToEntity as isLighthouseAvailable,
} from '@backstage/plugin-lighthouse/';
+import {
+ isPluginApplicableToEntity as isPullRequestsAvailable,
+ PullRequestsStatsCard,
+} from '@roadiehq/backstage-plugin-github-pull-requests';
const CICDSwitcher = ({ entity }: { entity: Entity }) => {
// This component is just an example of how you can implement your company's logic in entity page.
@@ -125,6 +129,11 @@ const OverviewContent = ({ entity }: { entity: Entity }) => (
)}
+ {isPullRequestsAvailable(entity) && (
+
+
+
+ )}
);