I have consulted this document below
https://docs.microsoft.com/en-us/azure/devops/pipelines/build/triggers?view=azure-devops&tabs=yaml
I used this trigger to control condition branch master and git tag.
trigger:
branches:
include:
- master
- refs/tags/development
When i push source code to branch "master" AND with git tag "development", the pipeline will be built. But i push to branch "master" OR Pushed git tag is "development". The pipeline also will be built. How can i control "AND" condition for branch and git tag.