runner.server icon indicating copy to clipboard operation
runner.server copied to clipboard

azp: Stricter if else parser when using unrecognized contextes

Open ChristopherHX opened this issue 1 year ago • 0 comments

The following passes on dev.azure.com, but fails here due to typo in parammeters

${{ if false }}:
  IsNull: ${{ replace(coalesce(parameters.y, parammeters.y), '''', '''''') }}

The following fails in both parsers

${{ if true }}:
  IsNull: ${{ replace(coalesce(parameters.y, parammeters.y), '''', '''''') }}

ChristopherHX avatar Apr 30 '24 10:04 ChristopherHX