Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'main' into merge-help
Sam Partington authored and GitHub committed Jul 2, 2020

Unverified

No user is associated with the committer email.
2 parents a0bf50c + 72803c4 commit 77e9a73
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/util.js.map
3 changes: 3 additions & 0 deletions src/util.ts
@@ -220,6 +220,7 @@ interface StatusReport {
"workflow_run_id": number;
"workflow_name": string;
"job_name": string;
"analysis_key": string;
"matrix_vars"?: string;
"languages": string;
"commit_oid": string;
@@ -257,6 +258,7 @@ async function createStatusReport(
}
const workflowName = process.env['GITHUB_WORKFLOW'] || '';
const jobName = process.env['GITHUB_JOB'] || '';
const analysis_key = await getAnalysisKey();
const languages = (await getLanguages()).sort().join(',');
const startedAt = process.env[sharedEnv.CODEQL_ACTION_STARTED_AT] || new Date().toISOString();
core.exportVariable(sharedEnv.CODEQL_ACTION_STARTED_AT, startedAt);
@@ -265,6 +267,7 @@ async function createStatusReport(
workflow_run_id: workflowRunID,
workflow_name: workflowName,
job_name: jobName,
analysis_key: analysis_key,
languages: languages,
commit_oid: commitOid,
ref: ref,

0 comments on commit 77e9a73

Please sign in to comment.