Update github check with aws log

pull/479/head
Frostebite 2022-12-10 00:31:03 +00:00
parent 792f254c80
commit aa96d861e4
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -6121,7 +6121,7 @@ class GitHub {
const token = cloud_runner_1.default.buildParameters.gitPrivateToken;
const owner = cloud_runner_options_1.default.githubOwner;
const repo = cloud_runner_options_1.default.githubRepoName;
GitHub.startedDate = Date.now();
GitHub.startedDate = Date.now().toString();
// call github api to create a check
const octokit = new core_1.Octokit({
auth: process.env.CHECKS_API_TOKEN || token,
@ -6137,7 +6137,7 @@ class GitHub {
// eslint-disable-next-line camelcase
external_id: cloud_runner_1.default.buildParameters.buildGuid,
// eslint-disable-next-line camelcase
started_at: '2018-05-04T01:14:52Z',
started_at: GitHub.startedDate,
output: {
title: nameReadable,
summary,

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -18,7 +18,7 @@ class GitHub {
const token = CloudRunner.buildParameters.gitPrivateToken;
const owner = CloudRunnerOptions.githubOwner;
const repo = CloudRunnerOptions.githubRepoName;
GitHub.startedDate = Date.now();
GitHub.startedDate = Date.now().toString();
// call github api to create a check
const octokit = new Octokit({
@ -37,7 +37,7 @@ class GitHub {
// eslint-disable-next-line camelcase
external_id: CloudRunner.buildParameters.buildGuid,
// eslint-disable-next-line camelcase
started_at: '2018-05-04T01:14:52Z',
started_at: GitHub.startedDate,
output: {
title: nameReadable,
summary,