diff --git a/README.md b/README.md index 1b88eca..9bc2c23 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ Create and push a commit with the correct template for conventional commits. ```bash cominnek update-version ``` -the commit will be: `build(version): update version` +the commit will be: `build: update version to ` | flag | type | description | | ------------------ | ------------- | --------------------------- | diff --git a/pkg/extras/update_version.go b/pkg/extras/update_version.go index 8391b12..cd8a68a 100644 --- a/pkg/extras/update_version.go +++ b/pkg/extras/update_version.go @@ -5,7 +5,7 @@ import ( ) func UpdateVersion(version string) { - msg := "update version" + msg := "update version to " + version - git.PushWithOutTicket(msg, "", "build", version) + git.PushWithOutTicket(msg, "", "build", "") }