Skip to content

Commit

Permalink
Merge pull request #463 from phovea/vstoiber/462_fix_release_notes
Browse files Browse the repository at this point in the history
Use correct release notes
  • Loading branch information
Anita Steiner authored Feb 15, 2021
2 parents c021f07 + 05bd237 commit cdabe2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/prepare-release/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ class Generator extends Base {
_formatReleaseNotes(pullRequestsTitles, pullRequestsNumbers) {
const title = pullRequestsTitles.filter((title) => title.trim() && title.trim().length > 2) // remove empty strings and invalid titles
.map((message) => message.replace('"', '')); // `git log` creates extra newline characters and quotes
return title.map((t, i) => `* ${t} (${this.repository.name}#${pullRequestsNumbers[i]})`).join('\n');
return title.map((t, i) => `* ${t} (${this.repository.link.replace("https://github.com/","")}#${pullRequestsNumbers[i]})`).join('\n');
}


Expand Down

0 comments on commit cdabe2d

Please sign in to comment.