Reputation:
I am making some changes in my project code and posting it to GitHub. This causes my Azure Pipeline to be triggered every time. How can I restrict pipeline triggering. I'm using Azure DevOps.
Upvotes: 0
Views: 475
Reputation:
In Azure pipeline , we can disable continuous Integration option as in the attached image reference . This will disable CI trigger
Upvotes: 1
Reputation: 41545
You need to disable the ci trigger from the pipeline:
# A pipeline with no CI trigger
trigger: none
Upvotes: 1