are you perhaps confusing base branch and head branch? base branch is usually something like
master
or
main
, and the pattern you are using is usually representative of a feature branch / head branch.
jwr
05/30/2023, 3:58 PM
or in other words, if your PR is attempting to merge some other branch into PS-3422-atlantis, then your regex will match.
but if you are doing the way more common pattern where your PR is attempting to merge PS-3422-atlantis into master/main, then your regex wont' match and you will see the error that you do see.
s
streets
05/30/2023, 4:01 PM
ah, i was hoping it was possible to limit autoplans to specific branches only, i thought thats what it was.
j
jwr
05/30/2023, 4:06 PM
this parameter allows you to limit autoplans to PRs which will merge into specific branches only.