I am setting up pipelines in Azure for the first time.
I have an azure-pipelines.yaml file on dev which I created in Azure. When I make a change on another branch (the yaml file is also on that branch) the pipeline runs for the branch but I have stated in the yaml the the trigger is dev.
trigger:
- dev
pool:
vmImage: 'windows-latest'
steps:
- task: MSBuild@1
displayName: 'Build API og WEB'
inputs:
solution: '**.*proj'
I only that the pipeline to run when changes are made on dev. How can I achive that?
