aleksandr-m / gitflow-maven-plugin

The Git-Flow Maven Plugin supports various Git workflows, including GitFlow and GitHub Flow. This plugin runs Git and Maven commands from the command line.
https://aleksandr-m.github.io/gitflow-maven-plugin/
Apache License 2.0
487 stars 180 forks source link

Hotfix-finish and commit message #384

Closed EricMorel35 closed 1 year ago

EricMorel35 commented 1 year ago

Hello,

When I want to finish a hotfix, I have customise this property hotfixVersionUpdateMessage wich contains @{version}. But unfortunately, the variable have not been replaced.

image

Other customisations worked also

Am i missing some configuration ? or maybe it's linked to this paramer hotfixVersion in my hotfix-finish command ?

Regards

aleksandr-m commented 1 year ago

@EricMorel35 It is commit message for avoiding merge conflicts. https://github.com/aleksandr-m/gitflow-maven-plugin/blob/d64924fa59ca31ee75ba6dfeedac5819a1fc4c20/src/main/java/com/amashchenko/maven/plugin/gitflow/GitFlowHotfixFinishMojo.java#L311 It doesn't really "bumps" anything. :) You can customize merge commit message with hotfixFinishDevMergeMessage parameter, if you need to.

EricMorel35 commented 1 year ago

Ok, I think you can close the ticket.