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
a release branch is checked based on matching the pattern release/v*. making a PR to a release branch wont match that pattern so that check will be false which will reset some templated files to the incorrect state.
Possible solutions:
make isReleaseBranch config only that needs to be set manually per branch
make branch pattern match PR branches and require PRs to release branches be named according to that pattern (eg release/v9-update-config)
The text was updated successfully, but these errors were encountered:
@rotu that is due to the autodetection of the origin by git. If you've forked the repo make sure that npm/template-oss is the origin and the remote url for your fork is named something different (eg fork):
a release branch is checked based on matching the pattern
release/v*
. making a PR to a release branch wont match that pattern so that check will be false which will reset some templated files to the incorrect state.Possible solutions:
isReleaseBranch
config only that needs to be set manually per branchrelease/v9-update-config
)The text was updated successfully, but these errors were encountered: