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
N.B It's worth noting that we're loosely following a Git Flow approach. So our process is:
A) Branch off develop to work on a new feature. (commit as much as you like without using conventional commit messages)
B) When the feature is complete, merge to develop using a conventional commit message (to allow that feature to be included i the changelog)
C) When we're ready for a prod release, we'll merge develop to master and run tagging/versioning (using semantic-release/multi-semantic-release
During testing, I've been branching off master then merging straight back into master just to save time and that all worked well.
When I came to do my final test by following the actual process which is branch off develop then merge back to develop then when we have a set of features ready we'll merge develop to master I noticed that when I run multi-semantic-release on master it doesn't pick up the merge commits. Would you be able to resolve this issue as well?
Originally posted by @musaabal-okaidi in #20 (comment)
The text was updated successfully, but these errors were encountered:
No worries. I've changed the release to run from the develop branch. I'm also considering switching from Gitflow to GitHub Flow as it seems more fitting for us. And with GitHub Flow there's only master without develop so we won't have to merge twice.
However; it's still good to add this feature to multi-semantic-release for anyone strictly adhering to Gitflow. We might start using multi-semantic-release for other repos that use Gitflow.
During testing, I've been branching off
master
then merging straight back intomaster
just to save time and that all worked well.When I came to do my final test by following the actual process which is branch off
develop
then merge back todevelop
then when we have a set of features ready we'll mergedevelop
tomaster
I noticed that when I runmulti-semantic-release
onmaster
it doesn't pick up the merge commits. Would you be able to resolve this issue as well?Originally posted by @musaabal-okaidi in #20 (comment)
The text was updated successfully, but these errors were encountered: