Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
312 views
in Technique[技术] by (71.8m points)

How Do I Trigger A Build In Azure DevOps On Commit To Branch?

If I was using TeamCity I could trigger my build when there is a commit to a particular branch:

https://www.jetbrains.com/help/teamcity/configuring-vcs-triggers.html

The closest I can see in the documentation for Azure DevOps is to trigger a build from a pull request

Is it possible to configure the pipelines in Azure DevOps to trigger a build when there is a commit to develop or master?

question from:https://stackoverflow.com/questions/66052413/how-do-i-trigger-a-build-in-azure-devops-on-commit-to-branch

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It an be done, both for pipelines defined in yaml as well as classic pipelines defined in directly in the UI of Azure Devops.

Triggers in Yaml pipelines

Add a trigger block to the top of your azure-pipeline.yaml (or whatever your yaml file you have hooked up to your pipeline) and put the following content.

trigger:
- master
- develop

Triggers in Classic pipelines

  1. Open up the pipeline in edit mode
  2. Select "Triggers" in the top menu
  3. Check the box Enable continuous integration
  4. Fill in the branch filters enter image description here

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...