Skip to content

Commit

Permalink
chore: adding body to jira tag regex search (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazybarber authored Jun 18, 2021
1 parent ea1488d commit 5f2917c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (c Git) GetCommits(currentTag, previousTag, gitPath string) ([]Commit, erro
r := fmt.Sprintf("%s...%s", currentTag, previousTag)
c.log.Infof("[GIT] found tags: %s", r)

out, err := c.CommitGetter("git", "-C", gitPath, "log", "--pretty=format:\"%H;%s\"", "--no-notes", r)
out, err := c.CommitGetter("git", "-C", gitPath, "log", "--pretty=format:\"%H;%s %b\"", "--no-notes", r)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 5f2917c

Please sign in to comment.