Skip to content

Commit

Permalink
Fix exclusion of commits when skip commits not set
Browse files Browse the repository at this point in the history
Signed-off-by: Derek McGowan <[email protected]>
  • Loading branch information
dmcgowan committed Mar 6, 2024
1 parent b4cf2a6 commit 55f37ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@ This tool should be ran from the root of the project repository for a new releas
r.Dependencies = updatedDeps
if highlights {
r.Highlights = groupHighlights(projectChanges)
} else {
}
if !highlights || !skipCommits {
r.Changes = projectChanges
}
r.Tag = tag
Expand Down

0 comments on commit 55f37ec

Please sign in to comment.