Merge pull request #15782 from markandersontrocme/feature/circleci-plugin-workflow-link
Feature: Make workflow a link in CircleCI plugin
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user