pull/524/head
Frostebite 2023-03-11 16:12:46 +00:00
parent 5e68d1ac17
commit efc1b8fb62
3 changed files with 5 additions and 5 deletions

4
dist/index.js generated vendored
View File

@ -6086,7 +6086,7 @@ class GitHub {
return cloud_runner_options_1.default.githubRepoName;
}
static async createGitHubCheck(summary) {
if (!cloud_runner_options_1.default.githubChecks) {
if (!cloud_runner_1.default.buildParameters.githubChecks) {
return ``;
}
GitHub.startedDate = new Date().toISOString();
@ -6119,7 +6119,7 @@ class GitHub {
return result.data.id.toString();
}
static async updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {
if (!cloud_runner_options_1.default.githubChecks) {
if (!cloud_runner_1.default.buildParameters.githubChecks) {
return;
}
GitHub.longDescriptionContent += `\n${longDescription}`;

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -46,7 +46,7 @@ class GitHub {
}
public static async createGitHubCheck(summary: string) {
if (!CloudRunnerOptions.githubChecks) {
if (!CloudRunner.buildParameters.githubChecks) {
return ``;
}
GitHub.startedDate = new Date().toISOString();
@ -87,7 +87,7 @@ class GitHub {
result = `neutral`,
status = `in_progress`,
) {
if (!CloudRunnerOptions.githubChecks) {
if (!CloudRunner.buildParameters.githubChecks) {
return;
}
GitHub.longDescriptionContent += `\n${longDescription}`;