fixes
parent
5394d4a00c
commit
2904451eb8
|
@ -6122,7 +6122,7 @@ class GitHub {
|
|||
return result.data.id.toString();
|
||||
}
|
||||
static async updateGitHubCheck(longDescription, summary, result = `neutral`, status = `in_progress`) {
|
||||
if (!cloud_runner_1.default.buildParameters.githubChecks) {
|
||||
if (`${cloud_runner_1.default.buildParameters.githubChecks}` !== `true`) {
|
||||
return;
|
||||
}
|
||||
cloud_runner_logger_1.default.log(`githubChecks: ${cloud_runner_1.default.buildParameters.githubChecks}`);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -87,7 +87,7 @@ class GitHub {
|
|||
result = `neutral`,
|
||||
status = `in_progress`,
|
||||
) {
|
||||
if (!CloudRunner.buildParameters.githubChecks) {
|
||||
if (`${CloudRunner.buildParameters.githubChecks}` !== `true`) {
|
||||
return;
|
||||
}
|
||||
CloudRunnerLogger.log(`githubChecks: ${CloudRunner.buildParameters.githubChecks}`);
|
||||
|
|
Loading…
Reference in New Issue