(
-
- {firstLine(data.message)}
-
- ),
- },
- { title: 'Branch', field: 'source.branchName' },
- { title: 'Status', field: 'status', render: WorkflowRunStatus },
- ]}
- data={runs}
- />
+ {!runs.length ? (
+
+
+ This component has GitHub Actions enabled, but no workflows were
+ found.
+
+
+
+ Create a new workflow
+
+
+
+ ) : (
+ (
+
+ {firstLine(data.message)}
+
+ ),
+ },
+ { title: 'Branch', field: 'source.branchName' },
+ { title: 'Status', field: 'status', render: WorkflowRunStatus },
+ ]}
+ data={runs}
+ />
+ )}
);
};