Merge branch 'master' into lewtakm/add-pull-request-plugin

This commit is contained in:
Mateusz Lewtak
2020-10-13 11:45:43 +02:00
committed by GitHub
@@ -61,7 +61,11 @@ import {
LastLighthouseAuditCard,
isPluginApplicableToEntity as isLighthouseAvailable,
} from '@backstage/plugin-lighthouse/';
import { Router as PullRequestsRouter } from '@roadiehq/backstage-plugin-github-pull-requests';
import {
Router as PullRequestsRouter,
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.
@@ -144,6 +148,11 @@ const OverviewContent = ({ entity }: { entity: Entity }) => (
<LastLighthouseAuditCard />
</Grid>
)}
{isPullRequestsAvailable(entity) && (
<Grid item sm={4}>
<PullRequestsStatsCard entity={entity} />
</Grid>
)}
</Grid>
);