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
{{ message }}
This repository was archived by the owner on Mar 21, 2025. It is now read-only.
path.Match does not match e.g. feature/foo when the pattern is just *. If users want to match strings with slashes, they must specify the pattern */* as well. For example, to match all branches, one must write branches: ["*", "*/*"]. This could trip up users who might expect * to match everything (as I just did).
Should we special-case "*" to be a catch-all? Or change the whole matching behaviour? Or leave as is?
This was detected as part of #690, which does nothing about it except calling it out in the docs.
path.Matchdoes not match e.g.feature/foowhen the pattern is just*. If users want to match strings with slashes, they must specify the pattern*/*as well. For example, to match all branches, one must writebranches: ["*", "*/*"]. This could trip up users who might expect*to match everything (as I just did).Should we special-case
"*"to be a catch-all? Or change the whole matching behaviour? Or leave as is?This was detected as part of #690, which does nothing about it except calling it out in the docs.