mirror of
https://github.com/github/codeql-action
synced 2026-05-25 15:00:36 +03:00
revert: 'Don't send field in status reports.'
This commit is contained in:
Generated
+1
-1
@@ -202,7 +202,7 @@ async function createStatusReportBase(actionName, status, actionStartedAt, cause
|
||||
}
|
||||
let matrix = core.getInput('matrix');
|
||||
if (matrix) {
|
||||
// Temporarily do nothing.
|
||||
statusReport.matrix_vars = matrix;
|
||||
}
|
||||
return statusReport;
|
||||
}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+3
-1
@@ -166,6 +166,8 @@ export interface StatusReportBase {
|
||||
"job_name": string;
|
||||
// Analysis key, normally composed from the workflow path and job name
|
||||
"analysis_key": string;
|
||||
// Value of the matrix for this instantiation of the job
|
||||
"matrix_vars"?: string;
|
||||
// Commit oid that the workflow was triggered on
|
||||
"commit_oid": string;
|
||||
// Ref that the workflow was triggered on
|
||||
@@ -247,7 +249,7 @@ export async function createStatusReportBase(
|
||||
}
|
||||
let matrix: string | undefined = core.getInput('matrix');
|
||||
if (matrix) {
|
||||
// Temporarily do nothing.
|
||||
statusReport.matrix_vars = matrix;
|
||||
}
|
||||
|
||||
return statusReport;
|
||||
|
||||
Reference in New Issue
Block a user