diff --git a/plugins/catalog/package.json b/plugins/catalog/package.json
index ec4ad4999a..d1f46aba15 100644
--- a/plugins/catalog/package.json
+++ b/plugins/catalog/package.json
@@ -27,7 +27,6 @@
"@backstage/plugin-github-actions": "^0.1.1-alpha.20",
"@backstage/plugin-jenkins": "^0.1.1-alpha.20",
"@backstage/plugin-scaffolder": "^0.1.1-alpha.20",
- "@backstage/plugin-sentry": "^0.1.1-alpha.20",
"@backstage/plugin-techdocs": "^0.1.1-alpha.20",
"@backstage/theme": "^0.1.1-alpha.20",
"@material-ui/core": "^4.9.1",
diff --git a/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx b/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx
index b2ec8e980e..9b29b205cf 100644
--- a/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx
+++ b/plugins/catalog/src/components/EntityPageOverview/EntityPageOverview.tsx
@@ -17,7 +17,7 @@
// TODO(shmidt-i): move to the app
import { Entity } from '@backstage/catalog-model';
import { Content } from '@backstage/core';
-import { SentryIssuesWidget } from '@backstage/plugin-sentry';
+import { LatestWorkflowRunCard } from '@backstage/plugin-github-actions';
import {
JenkinsBuildsWidget,
JenkinsLastBuildWidget,
@@ -47,12 +47,11 @@ export const EntityPageOverview: FC<{ entity: Entity }> = ({ entity }) => {
)}
-
-
-
+ {entity.metadata?.annotations?.['backstage.io/github-actions-id'] && (
+
+
+
+ )}
);