English 中文(简体)
• 如何在分支制造上启动一条管道,在DevevOps中排除了夹。
原标题:How to trigger a Pipeline on branch creation with excluded folders in AzureDevOps

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

输油管现在只有在我推向主人的时候,而不是在我设立一个新的分支的时候才会启动。

问题回答




相关问题
Team foundation server in the cloud?

We have been using TFS on our own server for a while. We would like to move it in the cloud. Is there any good hosted service? Note: we would like to import all our source and projects

热门标签