File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -315,7 +315,15 @@ export type ActionStatus =
315315 | "user-error" ;
316316
317317export interface StatusReportBase {
318- /** UUID representing the job run that this status report belongs to. */
318+ /** UUID representing the job run that this status report belongs to.
319+ * We generate our own UUID here because Actions currently does not expose
320+ * a unique job run identifier. This UUID will allow us to more easily
321+ * match reports from different steps in the same workflow job.
322+ *
323+ * If and when Actions does expose a unique job ID, we plan to populate
324+ * this field with the Actions-generated identifier, as it will allow us
325+ * to more easily join our telemetry data with Actions telemetry tables.
326+ */
319327 job_run_uuid : string ;
320328 /** ID of the workflow run containing the action run. */
321329 workflow_run_id : number ;
You can’t perform that action at this time.
0 commit comments