pull/524/head
Frostebite 2023-03-15 20:39:54 +00:00
parent f7fc3a37ad
commit e89e69edc4
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -726,7 +726,7 @@ class CloudRunnerOptions {
// ### ### ###
static get githubChecks() {
const value = CloudRunnerOptions.getInput('githubChecks');
return (value !== undefined && value !== 'false') || false;
return value === `true` || false;
}
static get githubCheckId() {
return CloudRunnerOptions.getInput('githubCheckId') || ``;

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -66,7 +66,7 @@ class CloudRunnerOptions {
static get githubChecks(): boolean {
const value = CloudRunnerOptions.getInput('githubChecks');
return (value !== undefined && value !== 'false') || false;
return value === `true` || false;
}
static get githubCheckId(): string {
return CloudRunnerOptions.getInput('githubCheckId') || ``;