File tree 1 file changed +26
-0
lines changed
1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -233,6 +233,32 @@ export type WorkflowRunLog = {
233
233
*
234
234
*/
235
235
steps : StepLogGroup [ ] ;
236
+ /**
237
+ * If the workflow returned a response, the stringified state of this
238
+ * response will be available in the workflowRunResponse field.
239
+ *
240
+ * To restore it to its original format, use JSON.parse.
241
+ */
242
+ workflowRunResponse ?: string ;
243
+ /**
244
+ * Information on the invoker workflow run, if any
245
+ */
246
+ invoker ?: {
247
+ /**
248
+ * run id of the invoker workflow
249
+ */
250
+ workflowRunId : string ;
251
+ /**
252
+ * URL of the invoker workflow
253
+ */
254
+ workflowUrl : string ;
255
+ /**
256
+ * Time when the invoker workflow run was created
257
+ *
258
+ * in unix milliseconds format
259
+ */
260
+ workflowRunCreatedAt : number ;
261
+ } ;
236
262
} ;
237
263
238
264
export type WorkflowRunLogs = {
You can’t perform that action at this time.
0 commit comments