user12312405
user12312405

Reputation:

How do I restrict pipeline triggering

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

Answers (2)

user5879853
user5879853

Reputation:

In Azure pipeline , we can disable continuous Integration option as in the attached image reference . This will disable CI trigger Azure Disable CI

Upvotes: 1

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41545

You need to disable the ci trigger from the pipeline:

# A pipeline with no CI trigger
trigger: none

Upvotes: 1

Related Questions