fixes
parent
efc1b8fb62
commit
bfe6559ffa
|
@ -725,7 +725,8 @@ class CloudRunnerOptions {
|
|||
// GitHub parameters
|
||||
// ### ### ###
|
||||
static get githubChecks() {
|
||||
return CloudRunnerOptions.getInput('githubChecks') || false;
|
||||
const value = CloudRunnerOptions.getInput('githubChecks');
|
||||
return (value !== undefined && value !== 'false') || false;
|
||||
}
|
||||
static get githubCheckId() {
|
||||
return CloudRunnerOptions.getInput('githubCheckId') || ``;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -64,7 +64,9 @@ class CloudRunnerOptions {
|
|||
// GitHub parameters
|
||||
// ### ### ###
|
||||
static get githubChecks(): boolean {
|
||||
return CloudRunnerOptions.getInput('githubChecks') || false;
|
||||
const value = CloudRunnerOptions.getInput('githubChecks');
|
||||
|
||||
return (value !== undefined && value !== 'false') || false;
|
||||
}
|
||||
static get githubCheckId(): string {
|
||||
return CloudRunnerOptions.getInput('githubCheckId') || ``;
|
||||
|
|
Loading…
Reference in New Issue