pull/531/head
Frostebite 2024-02-04 23:56:38 +00:00
parent d493977153
commit 345084ebae
3 changed files with 6 additions and 3 deletions

3
dist/index.js generated vendored
View File

@ -6224,7 +6224,7 @@ class GitHub {
return ``;
}
GitHub.startedDate = new Date().toISOString();
cloud_runner_logger_1.default.log(`Creating inital github check`);
cloud_runner_logger_1.default.log(`Creating github check`);
const data = {
owner: GitHub.owner,
repo: GitHub.repo,
@ -6250,6 +6250,7 @@ class GitHub {
},
};
const result = await GitHub.createGitHubCheckRequest(data);
cloud_runner_logger_1.default.log(`Creating github check ${result.status}`);
return result.data.id.toString();
}
static async updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -52,7 +52,7 @@ class GitHub {
}
GitHub.startedDate = new Date().toISOString();
CloudRunnerLogger.log(`Creating inital github check`);
CloudRunnerLogger.log(`Creating github check`);
const data = {
owner: GitHub.owner,
repo: GitHub.repo,
@ -79,6 +79,8 @@ class GitHub {
};
const result = await GitHub.createGitHubCheckRequest(data);
CloudRunnerLogger.log(`Creating github check ${result.status}`);
return result.data.id.toString();
}