Reputation: 1445
I created a brand new CI/CD pipeline in Azure DevOps using a yaml file that is working in another pipeline, no problem. I set its default branch to cloud-main, not master as is the suggestion. The new pipeline gives me the message "Some recent issues detected related to pipeline trigger." Running the pipeline works fine. How do I get rid of the error message?
Upvotes: 22
Views: 14201
Reputation: 939
As stated here:
https://developercommunity.visualstudio.com/t/Some-recent-issues-detected-related-to-p/1620293
this was a bug in a previous version of devops.
I was able to solve it on our devops version (which does not yet run the version with the fix) by simply updating the yaml file with a comment. I had this idea from this post:
Upvotes: 0
Reputation: 1445
To fix this and remove the error I went to
Strange that I have to drill down into this setting to change it. Hope my experience helps someone else who is getting this same error.
Upvotes: 51