trigger:
batch: true
branches:
include:
- dev
exclude:
- '*'
paths:
exclude:
- azure-pipelines.yml
- pom.xml
The above yml file mentions trigger only on the dev branch, but when I pushed any changes to the master branch the pipelines automatically fire even though I have excluded it using '*'
. I have mentioned it as '*'
because I am not sure about the branch names I will create. I want the pipeline to be triggered only on dev. Your help would be appreciated.