I’m using azure DevOps for deployment to salesforce platform. using Yaml scripting, i have created a stage for validation, is it possible to hold the pipeline for triggering the next stage which is deployment until i merge the pull request in azure repos ?
condition: and(succeeded(), eq(variables[‘Build.Reason’], ‘PullRequest’))
I have used the above condition but the pipeline is not waiting for me to the merge the pull request.