You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The BranchesFilter checks for asterisk ("*") anywhere in the string using .contains("*"). However the instructions on the field also suggest using regular expressions. Using a regular expression that includes ".*" doesn't work, as it checks for any instance of "*" to mean "any".
Note that I'm not sure what would happen if .contains("*") was replaced with .equals("*"), the regex might not be set up to work with this, but at minimum this would make functionality less confusing. The documented usage of:
any pull requests applied for this project: any, * or empty string
...doesn't really suggest an asterisk anywhere in the string.
The text was updated successfully, but these errors were encountered:
The BranchesFilter checks for asterisk ("*") anywhere in the string using
.contains("*")
. However the instructions on the field also suggest using regular expressions. Using a regular expression that includes ".*" doesn't work, as it checks for any instance of "*" to mean "any".Note that I'm not sure what would happen if
.contains("*")
was replaced with.equals("*")
, the regex might not be set up to work with this, but at minimum this would make functionality less confusing. The documented usage of:...doesn't really suggest an asterisk anywhere in the string.
The text was updated successfully, but these errors were encountered: