英文:
How to stop change in single branch triggering multiple pipelines in azure pipelines
问题
我想要以一对一的方式映射不同的分支到不同的Azure管道。但是单个分支的更改触发了多个管道。
如何防止这种情况发生?如何配置单个管道以及其application.yml文件,使之与单个分支相对应?
英文:
I want to map different branches with different azure pipelines in 1-1 fashion. But a change in single branch is triggering multiple pipelines.
How to prevent this? How to configure single pipeline with single branch and its application.yml file?
答案1
得分: 0
你可以查看这里的文档来完成这个操作。
你只需要在你的YAML文件中指定哪个分支应该触发每个流水线,就像这样:
trigger:
- master
英文:
You can check the documentation here to do that.
What you can do is just specify in your YAML files which branch should trigger each pipeline, like this:
trigger:
- master
答案2
得分: 0
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论