I have a Jenkinsfile, which includes this:
parameters {
string(name: 'Stack', defaultValue: 'DEV', description: 'For which environment is this?')
string(name: 'Version', defaultValue: '3.2.0-beta.0', description: 'What is the release version?')
}And works great, running it in the "regular" Jenkins UI. Get a popup window and everything. Even for multi branch projects/jobs.
But when I use the Blue Ocean interface for the multi branch job, no popup window. The default values are just used. Am I not understanding some thing here?