presumably parameters specified in jenkins workflow input step available consumption , conditional logic? how obtain values? e.g. how obtain , reference true or false value checkbox parameter in following:
input id: 'proceed1', message: 'proceed or abort?', parameters: [[$class: 'booleanparameterdefinition', defaultvalue: false, description: '', name: 'please confirm agree this']]
the return value of input
step submitted value (a boolean
, in case of booleanparameterdefinition
). if there multiple parameters, map
can value of each name
.
by way can skip parameters
altogether if want ok/cancel semantics, example seems imply. if user cancels, flow aborts. if accept, there no return value (well, null
technically).