The pipeline upload command supports environment variable substitution using the syntax $VAR and ${VAR}. While the schema validation works fine for properties that are strings, it will fail for properties such as parallelism where the type is defined as an integer.
What do you think about expanding some properties like parallelism to allow for a string, in addition to an integer, as long as the string resembles an environment variable?
The pipeline upload command supports environment variable substitution using the syntax
$VAR
and${VAR}
. While the schema validation works fine for properties that are strings, it will fail for properties such asparallelism
where the type is defined as an integer.What do you think about expanding some properties like
parallelism
to allow for a string, in addition to an integer, as long as the string resembles an environment variable?