So say I have two directories, /A/, /B/ and I have two (CI) build pipelines listening on release/*.
These two pipelines have path filters limiting them to build when the respective directory contains changes.
How would I make these build pipelines trigger when I create a new branch, e.g. release/1.7 from master? The pipelines do trigger if I omit the path filters however they do not trigger if I include them, this seems to be a "feature" introduced in https://docs.microsoft.com/en-us/azure/devops/release-notes/2019/sprint-155-update#ci-triggers-for-new-branches
I assume the functionality exists since this workflow is what MS/AzDO do themselves: https://docs.microsoft.com/en-us/azure/devops/learn/devops-at-microsoft/release-flow
Edit: To clarity the question, how do I get back the original behavior of builds triggering when a new branch is created while also using path filters?