The issue described in BSERV-7503 was closed and we are told to vote for this issue as an alternate solution to the problem. This issue isn't the same as BSERV-7503. This issue is only about preventing branch name creation that doesn't meet a specific naming pattern. That can be accomplished using ScriptRunner for Stash.
In BSERV-7503, the issue isn't about branch creation, it's about a commit being pushed to a branch and being correctly blocked. I would expect BSERV-4208 to block the push -u lines in both example below if the branch name doesn't meet the rules. However if the naming rules rules are met and I have branch restrictions set to block commits without a pull request then BSERV-7503 should block the second sequence shown below as it pushes a new commit
git clone repo # Repo has commits without a PR blocked for feature/branch*
git checkout master
git checkout -b feature/branch1 # Create a branch that conforms to branch name policy
git push -u origin feature/branch1 # Push that branch name.
touch file1 # Create a file
git add -A # Add the file
git commit -m "Blocked commit" # Commit the file
git push # Push is blocked as it's a commit without a pull request
However with the same branch restriction, to block commits without a pull request, the sequence shown below, which is logically the same as the above will allow the commit to be pushed which IMO is incorrect.
git clone repo # Repo has commits without a PR blocked for feature/branch*
git checkout master
git checkout -b feature/branch2 # Create a branch that conforms to branch name policy
touch file2 # Create a file
git add -A # Add the file
git commit -m "Unblocked commit" # Commit the file
git push -u origin feature/branch2 # Push succeeds even with the branch restriction
IMO both sequences should have blocked the commit from being pushed. I understand that someone could circumvent the push restriction by using the push of just a branch after they have pushed to a non-blocked branch.
I'm not worried about a malicious attempt to push code without a pull request, I'm worried about the accidental case. The second sequence of events is likely to be a much more common workflow than the first. It's shorter and is likely a common sequence of commands. Unfortunately it will also allow a protected branch to have a commit pushed to it which I believe is incorrect.
Our free Control Freak plugin can enforce branch naming and tag naming policies based on regex or other rules.