我在 Azure DevOps 上有一个项目,其中有一个 YAML 管道。
鉴于此 YAML:
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
# trigger 1
trigger: none
pr:
branches:
include:
- main
pool:
vmImage: ubuntu-latest
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
管道未触发。我的期望是:
- 创建 PR 或批准 PR 时不会触发
- 当 PR 针对主分支且获得批准时将触发
当 PR 完成并针对主分支时,它不会触发。我哪里做错了,或者我还需要检查什么可能会阻止触发管道?
文档指出,如果 git 存储库托管在 GitHub 或 Bitbucket Cloud 中,则只能使用 YAML触发器。
pr
对于其他存储库(例如 Azure DevOps 中的默认存储库),您需要使用分支策略。