skip to Main Content

I want to map different branches with different azure pipelines in 1-1 fashion. But a change in single branch is triggering multiple pipelines.

How to prevent this? How to configure single pipeline with single branch and its application.yml file?

2

Answers


  1. You can check the documentation here to do that.

    What you can do is just specify in your YAML files which branch should trigger each pipeline, like this:

    trigger:
      - master
    
    Login or Signup to reply.
  2. or you can override the trigger

    enter image description here

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search