Skip to content

Commit

Permalink
fix: commitAnalyzer using changelogGeneratorOpts (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasSko authored Nov 4, 2022
1 parent eb0c01d commit 7484f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/semantic-release/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ func cliHandler(cmd *cobra.Command, args []string) {
commitAnalyzer, err := pluginManager.GetCommitAnalyzer()
exitIfError(err)
logger.Printf("commit-analyzer plugin: %s@%s\n", commitAnalyzer.Name(), commitAnalyzer.Version())
exitIfError(commitAnalyzer.Init(conf.ChangelogGeneratorOpts))
exitIfError(commitAnalyzer.Init(conf.CommitAnalyzerOpts))

commits := commitAnalyzer.Analyze(rawCommits)

Expand Down

0 comments on commit 7484f75

Please sign in to comment.