Forum Discussion
nitinnaidu947
Oct 27, 2023Copper Contributor
not equal condition does not work in azure pipeline template
I have a condition to run a task in azure job template conditionally if value of parameter is not null, however the task runs even if value of parameter is null. parameters:
- name: 'new_tag_v...
Kidd_Ip
Jun 20, 2025MVP
Try this, use a space as the default instead of an empty string:
parameters:
- name: 'new_tag_value'
type: string
default: ' '