How do I set up different pipelines for each branch in Azure
问题 I have a single project but with two "master" branches. master virt/master Each of them would have their own azure-pipeline.yml specific for their branch. The first pipeline in master has the trigger set up as trigger: batch: true branches: include: - refs/heads/master The second one is in the virt/master branch. trigger: batch: true branches: include: - refs/heads/virt/master Here's the repository that I am experimenting on https://dev.azure.com/trajano/experiments/_git/multi-branch master