From 5c1abc3bbfda6be79fbfb002c93c96b71154e771 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Mon, 16 Jan 2023 14:34:09 -0500 Subject: [PATCH 1/5] Feature: Make workflow a link in CircleCI plugin Signed-off-by: Mark Anderson-Trocme --- .../src/components/BuildsPage/lib/CITable/CITable.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx index adc8a569bb..8f99f1f69c 100644 --- a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -212,6 +212,10 @@ const generatedColumns: TableColumn[] = [ { title: 'Workflow', field: 'workflow.name', + highlight: true, + render: (row: Partial) => ( + {row?.workflow?.name} + ), }, { title: 'Actions', From 1616e06047ebd78e2904e93cfaf9264a6479a3c2 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Mon, 16 Jan 2023 14:52:47 -0500 Subject: [PATCH 2/5] add changeset Signed-off-by: Mark Anderson-Trocme --- .changeset/slow-moles-sin.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/slow-moles-sin.md diff --git a/.changeset/slow-moles-sin.md b/.changeset/slow-moles-sin.md new file mode 100644 index 0000000000..13527b509e --- /dev/null +++ b/.changeset/slow-moles-sin.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-circleci': minor +--- + +Making workflow a link From d5fe9f10934ad24fee2b5db055ee502f0ee349bb Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Fri, 3 Feb 2023 16:09:28 -0500 Subject: [PATCH 3/5] feature: build workflow url Signed-off-by: Mark Anderson-Trocme --- .../src/components/BuildsPage/lib/CITable/CITable.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx index 8f99f1f69c..6b22d641ee 100644 --- a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -214,7 +214,14 @@ const generatedColumns: TableColumn[] = [ field: 'workflow.name', highlight: true, render: (row: Partial) => ( - {row?.workflow?.name} + + {row?.workflow?.name} + ), }, { From c044a3629b6549981c0b6ae50561cef9bf21ba60 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Fri, 3 Feb 2023 16:16:47 -0500 Subject: [PATCH 4/5] lint Signed-off-by: Mark Anderson-Trocme --- .../src/components/BuildsPage/lib/CITable/CITable.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx index 6b22d641ee..22f69ac30f 100644 --- a/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx +++ b/plugins/circleci/src/components/BuildsPage/lib/CITable/CITable.tsx @@ -215,10 +215,7 @@ const generatedColumns: TableColumn[] = [ highlight: true, render: (row: Partial) => ( {row?.workflow?.name} From 04f8ef30a6804d9e8048b8d7e591c3b644d40889 Mon Sep 17 00:00:00 2001 From: Ben Lambert Date: Mon, 6 Feb 2023 12:01:47 +0100 Subject: [PATCH 5/5] Update slow-moles-sin.md Signed-off-by: Ben Lambert --- .changeset/slow-moles-sin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/slow-moles-sin.md b/.changeset/slow-moles-sin.md index 13527b509e..140d9e7435 100644 --- a/.changeset/slow-moles-sin.md +++ b/.changeset/slow-moles-sin.md @@ -1,5 +1,5 @@ --- -'@backstage/plugin-circleci': minor +'@backstage/plugin-circleci': patch --- -Making workflow a link +Making workflow a link