simple-bitbucket-commit-checker
simple-bitbucket-commit-checker copied to clipboard
Branch validation is not working with sbcc-4.1
This is the regex^([a-z0-9-.]+[/])*([a-zA-Z0-9-.]*)$ we are using for branch name validation in bitbucket.As per this expression any branch created only with Uppercase letters and numbers should not allow.But it is allowing to push.
Perhaps change it to ^refs/([a-z0-9-.]+[/])([a-zA-Z0-9-.])$
Thanks for your quick response. will try it.