Is it possible in azure devops that the choice of the first parameter by the user, determines the second parameter (type, displayName etc.)?
For example:
parameters:
- name: parametr1
displayName: example1
type: string
default: first
values:
- first
- second
- third
And if the user selects "first" when starting the pipeline, the second parameter to enter:
- name: parametr2.1
displayName: example2
type: number
But if the user selects "second" when starting the pipeline, the second parameter to enter:
- name: parametr2.2
displayName: example2.2
type: boolean
Thanks for any help :)