I am having multiple repo triggers in single YAML pipeline and for one repository I want to disable trigger when new branch created for test repository. I tried only including the path but didn't help.
repositories:
- repository: BBB
type: git
name: ABC/tools
ref: master
trigger:
branches:
include:
- testbranch/*
- repository: AAA
type: git
name: ABC/test
ref: master
trigger:
paths:
include:
- origin/testbranch/*
Any suggestion to above sniffet