Skip to content

Commit

Permalink
use organisation/name
Browse files Browse the repository at this point in the history
  • Loading branch information
dvvanessastoiber committed Feb 4, 2021
1 parent c021f07 commit 05bd237
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 05bd237

Please sign in to comment.