Add no_get param to Concourse schema
This commit is contained in:
@@ -368,6 +368,7 @@ public class PipelineYmlSchema implements YamlSchema {
|
||||
addProp(putStep, "get_params", f.contextAware("GetParams", (dc) ->
|
||||
resourceTypes.getInParamsType(getResourceType("put", models, dc))
|
||||
));
|
||||
addProp(putStep, "no_get", t_boolean);
|
||||
putStep.require((DynamicSchemaContext dc, Node parent, Node _map, YType type, IProblemCollector problems) -> {
|
||||
if (_map instanceof MappingNode) {
|
||||
MappingNode map = (MappingNode) _map;
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
*Optional*. Skips the get step that usually follows the completion of the put step.
|
||||
Reference in New Issue
Block a user