I'm trying out "semantic-release" scenarios, and if I create a next
branch and publish a breaking change on that branch, the branch triggers a version 2.0.0
, which is good.
Now if I do a pull from the origin while I'm on the next
branch, I get the last commit message generated by semantic release which is "chore(release): 2.0.0 [skip ci]
".
All good so far.
Now I will checkout the "main" branch and then I merge the next
branch on it.
What I expect to happen is that the main branch (which is on version 1.0.0) will see the changes coming from next
branch and release a version 2.0.0
on the main @release
channel.
But that doesn't happen for some reason, instead, there are no action
or release
triggered on github actions at all.
What am I doing wrong here?