0
votes

I am using git service of azure devops. I have my build pipeline setup with master branch using yml file. And it runs & perform well. Question is on Azure UI: Why does it show me the button 'Set up build' i already have my pipeline setup.

The reason is that the latest commit did not trigger my pipeline as we are excluding build trigger for README file changes. (Build status links with commit id) is there anyway to show the latest build status instead of this button.

enter image description here

2

2 Answers

0
votes

Azure DevOps provides this quick way to set up yaml pipeline using this “Set up build” button when new repository is created. When you click this button to set up yaml pipeline and queue a new build, this button will show you the latest build's state( the build status is linked with commit-id), as below.

enter image description here

To your situation, as this ticket suggested, you could see the build status in the other place, such as Commits hub, Dashboad, build status badges and so on.

0
votes

This happens if we commit some files which is part of exclusion in pipeline trigger, as in this particular commit there is no pipeline status is linked.