I want to trigger the pipeline in AzureDevOps if I push a commit to master.
I also want it to trigger if I create a new branch in realeases or if I create a new version of the test branch.
I currently have the following trigger configuration in one of my pipelines in Azure DevOps:
trigger:
branches:
batch: true
include:
- master
- test
- releases/*
paths:
exclude:
- .azuredevops
- renovate.json
输油管现在只有在我推向主人的时候,而不是在我设立一个新的分支的时候才会启动。