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
No minor increment on merge message that contains an organization name, e.g:
"Merge pull request #1 from bananaCorp/develop"
This is the default pull request message of GitHub for an organization.
The default regex for a develop branch is, "^dev(elop)?(ment)?$", due to this the branch is not detected by the MainLineVersionCalculator, as it sees "bananaCorp/develop" as the branch. We can work around this by changing the regex to "dev(elop)?(ment)?$".
My question is if this is the intended behavior, and for what reason.