fixes
parent
f7fc3a37ad
commit
e89e69edc4
|
@ -726,7 +726,7 @@ class CloudRunnerOptions {
|
||||||
// ### ### ###
|
// ### ### ###
|
||||||
static get githubChecks() {
|
static get githubChecks() {
|
||||||
const value = CloudRunnerOptions.getInput('githubChecks');
|
const value = CloudRunnerOptions.getInput('githubChecks');
|
||||||
return (value !== undefined && value !== 'false') || false;
|
return value === `true` || 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
|
@ -66,7 +66,7 @@ class CloudRunnerOptions {
|
||||||
static get githubChecks(): boolean {
|
static get githubChecks(): boolean {
|
||||||
const value = CloudRunnerOptions.getInput('githubChecks');
|
const value = CloudRunnerOptions.getInput('githubChecks');
|
||||||
|
|
||||||
return (value !== undefined && value !== 'false') || false;
|
return value === `true` || false;
|
||||||
}
|
}
|
||||||
static get githubCheckId(): string {
|
static get githubCheckId(): string {
|
||||||
return CloudRunnerOptions.getInput('githubCheckId') || ``;
|
return CloudRunnerOptions.getInput('githubCheckId') || ``;
|
||||||
|
|
Loading…
Reference in New Issue