Skip to content

Commit f6334bd

Browse files
committed
refactor: remove fullstop in commit message
1 parent 130e4a2 commit f6334bd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

vcs/operations.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ package vcs
1818

1919
import (
2020
"fmt"
21+
"strings"
22+
2123
"github.com/go-git/go-git/v5"
2224
"github.com/release-tools/since/cfg"
2325
"github.com/sirupsen/logrus"
24-
"strings"
2526
)
2627

2728
type ReleaseMetadata struct {
@@ -52,7 +53,7 @@ func CommitChangelog(repoPath string, changelogFile string, version string) (has
5253
if err != nil {
5354
return "", err
5455
}
55-
commit, err := w.Commit("build: release "+version+".", &git.CommitOptions{})
56+
commit, err := w.Commit("build: release "+version, &git.CommitOptions{})
5657
if err != nil {
5758
return "", err
5859
}

0 commit comments

Comments
 (0)