git_branch_name fails if any of the items in the list fail.
My understanding that a whitelist is an explicit allow list so anything in the list that passes, providing it's not also in the black, should be an instant pass. With the following configuration I would expect a branch called feature/new-feature to pass but, at the moment, it would fail as it doesn't also fit fix/* .
I know that I could create a single line regex but it seems to defeat the purpose of having a "list".
vendor/bin/grumphp -V
git_branch_name
fails if any of the items in the list fail.My understanding that a whitelist is an explicit allow list so anything in the list that passes, providing it's not also in the black, should be an instant pass. With the following configuration I would expect a branch called
feature/new-feature
to pass but, at the moment, it would fail as it doesn't also fitfix/*
.I know that I could create a single line regex but it seems to defeat the purpose of having a "list".