-
Bug
-
Resolution: Fixed
-
Minor
-
None
the regex "^PR-(
d+)(.)?$" includes {} in the second matching group which means PR-11-HEAD will never match the strategy of HEAD as the second matching group includes the {}. Just need to do something like "^PR(
d+)(:?-(.))?$" (if I can remember my regex for non-matching groups correctly)
- mentioned in
-
Page Loading...