diff --git a/pipeline/changelog/changelog.go b/pipeline/changelog/changelog.go index d3b79dcd9..4cd86354c 100644 --- a/pipeline/changelog/changelog.go +++ b/pipeline/changelog/changelog.go @@ -124,7 +124,7 @@ func getChangelog(tag string) (string, error) { } func gitLog(refs ...string) (string, error) { - var args = []string{"log", "--pretty=oneline", "--abbrev-commit"} + var args = []string{"log", "--pretty=oneline", "--abbrev-commit", "--no-decorate"} args = append(args, refs...) return git.Run(args...) }