diff --git a/bin/plugin/commands/changelog.js b/bin/plugin/commands/changelog.js index d2b1b9e3c7..599534050f 100644 --- a/bin/plugin/commands/changelog.js +++ b/bin/plugin/commands/changelog.js @@ -162,7 +162,7 @@ function getIssueFocus( issue ) { * @return {string} The formatted changelog string. */ function formatChangelog( milestone, pullRequests ) { - let changelog = '= ' + milestone + ' =\n\n'; + let changelog = '= ' + milestone.replace( 'PL Plugin ', '' ) + ' =\n\n'; // Group PRs by type. const typeGroups = groupBy( pullRequests, getIssueType );