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 regex fails to pick up branch names with a slash in them. I think this should be supported, since prefixes like feature/ or bugfix/ are fairly common.
Replacing the second [^/]+ with something more permissive should fix this, but perhaps there's other complexities I'm not aware of.
The text was updated successfully, but these errors were encountered:
Trying to set up builds with
@nx-tools/nx-container
on a CodeBuild with a Bitbucket Server source, I'm getting this error:As far as I can tell, this is because when using the git context (specifically on this line:
nx-tools/packages/ci-context/src/lib/utils/git.ts
Line 84 in df60124
feature/
orbugfix/
are fairly common.Replacing the second
[^/]+
with something more permissive should fix this, but perhaps there's other complexities I'm not aware of.The text was updated successfully, but these errors were encountered: