Resolve depends on with template YAML Azure Pipelines
Have the following structure: Main yaml stages: - ${{ if eq(parameters.Action, 'Action1') }}: - stage: PreStep jobs: - job: steps: - task: PowerShell@2 inputs: targetType: "inline" script: | Write-Host "Hello World" - ${{ if eq(variables['doSomething'], 'true') }}: - template: Templates.yaml@templates…