Skip to content

Commit 69bf3f2

Browse files
authored
Merge pull request #134 from github/merge-v1
Merge v1 into main.
2 parents 30d2cce + 02d3d62 commit 69bf3f2

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

lib/util.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/util.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/util.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,6 @@ export interface StatusReportBase {
166166
"job_name": string;
167167
// Analysis key, normally composed from the workflow path and job name
168168
"analysis_key": string;
169-
// Value of the matrix for this instantiation of the job
170-
"matrix_vars"?: string;
171169
// Commit oid that the workflow was triggered on
172170
"commit_oid": string;
173171
// Ref that the workflow was triggered on
@@ -249,7 +247,7 @@ export async function createStatusReportBase(
249247
}
250248
let matrix: string | undefined = core.getInput('matrix');
251249
if (matrix) {
252-
statusReport.matrix_vars = matrix;
250+
// Temporarily do nothing.
253251
}
254252

255253
return statusReport;

0 commit comments

Comments
 (0)