Merge pull request #15782 from markandersontrocme/feature/circleci-plugin-workflow-link

Feature: Make workflow a link in CircleCI plugin
This commit is contained in:
Ben Lambert
2023-02-06 12:02:01 +01:00
committed by GitHub
2 changed files with 13 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-circleci': patch
---
Making workflow a link
@@ -212,6 +212,14 @@ const generatedColumns: TableColumn[] = [
{
title: 'Workflow',
field: 'workflow.name',
highlight: true,
render: (row: Partial<CITableBuildInfo>) => (
<Link
to={`https://app.circleci.com/pipelines/workflows/${row?.workflow?.id}`}
>
{row?.workflow?.name}
</Link>
),
},
{
title: 'Actions',