We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb7b4cf commit 84c8b77Copy full SHA for 84c8b77
src/types.ts
@@ -163,6 +163,17 @@ export interface APIWorkflowItem {
163
operations: WorkflowOperationItem[] | null;
164
}
165
166
+/**
167
+ * Workflow Run Schema
168
+ */
169
+export interface APIWorkflowRunItem {
170
+ status: string;
171
+ started: string;
172
+ finished: string;
173
+ completed: string;
174
+ result: { success: boolean; message: string };
175
+}
176
+
177
/**
178
* Error object as defined in the OpenAPI schema
179
*/
0 commit comments