如何防止在 azure devops yaml 中创建新分支的构建

How to prevent build for new branch creation in azure devops yaml

在 Azure DevOps 中,使用 Yaml 文件创建管道并在触发器部分提到“开发”。它触发了开发分支中的新提交,但也触发了基于“开发”分支的新分支创建,这在我创建静态管道时不会发生。如何防止构建新分支。有什么帮助吗?

我认为您应该使用如下所示的包含/排除过滤器:

# this is being defined in app-ci pipeline
resources:
  pipelines:
  - pipeline: securitylib
    source: security-lib-ci
    trigger: 
      branches:
        include: 
        - releases/*
        exclude:
        - releases/old*

只需查看此页面,您就会找到答案:https://docs.microsoft.com/en-us/azure/devops/pipelines/process/pipeline-triggers?view=azure-devops

此致