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