Fix: read git branch from project path git repo
parent
0f688d08b8
commit
24b1c3dbbd
|
|
@ -713,7 +713,7 @@ class CloudRunnerOptions {
|
||||||
return CloudRunnerOptions.getInput(`cloudRunnerTests`) || false;
|
return CloudRunnerOptions.getInput(`cloudRunnerTests`) || false;
|
||||||
}
|
}
|
||||||
static get watchCloudRunnerToEnd() {
|
static get watchCloudRunnerToEnd() {
|
||||||
return CloudRunnerOptions.getInput(`watchCloudRunnerToEnd`) !== 'false' || true;
|
return CloudRunnerOptions.getInput(`watchToEnd`) !== 'false' || true;
|
||||||
}
|
}
|
||||||
static ToEnvVarFormat(input) {
|
static ToEnvVarFormat(input) {
|
||||||
if (input.toUpperCase() === input) {
|
if (input.toUpperCase() === input) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -158,7 +158,7 @@ class CloudRunnerOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
static get watchCloudRunnerToEnd(): boolean {
|
static get watchCloudRunnerToEnd(): boolean {
|
||||||
return CloudRunnerOptions.getInput(`watchCloudRunnerToEnd`) !== 'false' || true;
|
return CloudRunnerOptions.getInput(`watchToEnd`) !== 'false' || true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ToEnvVarFormat(input: string) {
|
public static ToEnvVarFormat(input: string) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue