mirror of
https://github.com/github/codeql-action.git
synced 2026-05-21 06:50:05 +00:00
Merge pull request #132 from github/dont-send-matrix-vars
Don't send `matrix_vars` field in status reports.
This commit is contained in:
Generated
+1
-1
@@ -183,7 +183,7 @@ async function createStatusReportBase(actionName, status, actionStartedAt, cause
|
||||
}
|
||||
let matrix = core.getInput('matrix');
|
||||
if (matrix) {
|
||||
statusReport.matrix_vars = matrix;
|
||||
// Temporarily do nothing.
|
||||
}
|
||||
return statusReport;
|
||||
}
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-3
@@ -146,8 +146,6 @@ 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
|
||||
@@ -229,7 +227,7 @@ export async function createStatusReportBase(
|
||||
}
|
||||
let matrix: string | undefined = core.getInput('matrix');
|
||||
if (matrix) {
|
||||
statusReport.matrix_vars = matrix;
|
||||
// Temporarily do nothing.
|
||||
}
|
||||
|
||||
return statusReport;
|
||||
|
||||
Reference in New Issue
Block a user