trigger nameの追加

Signed-off-by: DaisukeHirabayashi <daisuke@pluslab.org>
This commit is contained in:
DaisukeHirabayashi
2024-03-13 17:44:05 +09:00
committed by Vincenzo Scamporlino
parent bbeb835d70
commit fbe3f9b1cd
2 changed files with 9 additions and 0 deletions
+1
View File
@@ -83,6 +83,7 @@ export interface Substitutions {
SHORT_SHA: string;
REF_NAME: string;
REPO_NAME: string;
TRIGGER_NAME: string;
REVISION_ID: string;
}
@@ -54,6 +54,14 @@ const generatedColumns: TableColumn[] = [
</Typography>
),
},
{
title: 'Trigger Name',
render: (row: Partial<WorkflowRun>) => (
<Typography variant="body2" noWrap>
{row.substitutions?.TRIGGER_NAME}
</Typography>
),
},
{
title: 'Source',
field: 'source',