I configured Teamcity job to be triggered by pull requests (pull request is created or updated). In VCS root default branch:
refs/heads/master
Branch specification:
-:refs/heads/master
+:refs/pull/(*/merge)
All our release branches have name started with release-, for example release-1.0.0.
How to configure teamcity job to be triggered only by pull requests to any release branch? There is pull request filtering by target branch, however it does not support asterisks in name of branch.
VCS Trigger
and then use the following branch filter:+:release-*
– Joakim Skoog