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