Skip to content

Commit

Permalink
Merge pull request #856 from mikepenz/feature/fix_log_message
Browse files Browse the repository at this point in the history
Ensure log message is properly displayed as string
  • Loading branch information
mikepenz authored Aug 9, 2022
2 parents 5dc6e72 + 63b88e3 commit 79931e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function buildChangelog(diffInfo: DiffInfo, prs: PullRequestInfo[], optio
const config = options.configuration
const sort = config.sort || DefaultConfiguration.sort
prs = sortPullRequests(prs, sort)
core.info(`ℹ️ Sorted all pull requests ascending: ${sort}`)
core.info(`ℹ️ Sorted all pull requests ascending: ${JSON.stringify(sort)}`)

// drop duplicate pull requests
if (config.duplicate_filter !== undefined) {
Expand Down

0 comments on commit 79931e1

Please sign in to comment.