@@ -74,12 +74,34 @@ import {
7474} from '@backstage/plugin-kubernetes' ;
7575import { EntityScorecardContent } from '@red-hat-developer-hub/backstage-plugin-scorecard' ;
7676
77+ import { GithubIssuesCard } from '@backstage-community/plugin-github-issues' ;
78+ import { EntityGithubPullRequestsContent } from '@roadiehq/backstage-plugin-github-pull-requests' ;
79+ import { EntityJiraOverviewCard } from '@roadiehq/backstage-plugin-jira' ;
80+
7781const scorecardRoute = (
7882 < EntityLayout . Route path = "/scorecard" title = "Scorecard" >
7983 < EntityScorecardContent />
8084 </ EntityLayout . Route >
8185) ;
8286
87+ const githubIssuesRoute = (
88+ < EntityLayout . Route path = "/github-issues" title = "GitHub Issues" >
89+ < GithubIssuesCard />
90+ </ EntityLayout . Route >
91+ ) ;
92+
93+ const githubPullRequestsRoute = (
94+ < EntityLayout . Route path = "/pull-requests" title = "Pull Requests" >
95+ < EntityGithubPullRequestsContent />
96+ </ EntityLayout . Route >
97+ ) ;
98+
99+ const jiraOpenIssuesRoute = (
100+ < EntityLayout . Route path = "/jira" title = "Jira" >
101+ < EntityJiraOverviewCard />
102+ </ EntityLayout . Route >
103+ ) ;
104+
83105const techdocsContent = (
84106 < EntityTechdocsContent >
85107 < TechDocsAddons >
@@ -210,6 +232,9 @@ const serviceEntityPage = (
210232 </ EntityLayout . Route >
211233
212234 { scorecardRoute }
235+ { githubIssuesRoute }
236+ { githubPullRequestsRoute }
237+ { jiraOpenIssuesRoute }
213238 </ EntityLayout >
214239) ;
215240
@@ -247,6 +272,9 @@ const websiteEntityPage = (
247272 </ EntityLayout . Route >
248273
249274 { scorecardRoute }
275+ { githubIssuesRoute }
276+ { githubPullRequestsRoute }
277+ { jiraOpenIssuesRoute }
250278 </ EntityLayout >
251279) ;
252280
@@ -268,6 +296,9 @@ const defaultEntityPage = (
268296 </ EntityLayout . Route >
269297
270298 { scorecardRoute }
299+ { githubIssuesRoute }
300+ { githubPullRequestsRoute }
301+ { jiraOpenIssuesRoute }
271302 </ EntityLayout >
272303) ;
273304
0 commit comments