Skip to content
Snippets Groups Projects
Commit 34ccbe38 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: de-dupe release notes in each PR

parent da7ad5b3
No related branches found
No related tags found
No related merge requests found
...@@ -148,6 +148,19 @@ async function ensurePr(prConfig) { ...@@ -148,6 +148,19 @@ async function ensurePr(prConfig) {
config.hasReleaseNotes = config.upgrades.some(upg => upg.hasReleaseNotes); config.hasReleaseNotes = config.upgrades.some(upg => upg.hasReleaseNotes);
config.hasCommits = config.upgrades.some(upg => upg.hasCommits); config.hasCommits = config.upgrades.some(upg => upg.hasCommits);
const releaseNoteRepos = [];
for (const upgrade of config.upgrades) {
if (releaseNoteRepos.includes(upgrade.repositoryUrl)) {
logger.debug(
{ depName: upgrade.depName },
'Removing duplicate release notes'
);
upgrade.hasReleaseNotes = false;
} else {
releaseNoteRepos.push(upgrade.repositoryUrl);
}
}
const prTitle = handlebars.compile(config.prTitle)(config); const prTitle = handlebars.compile(config.prTitle)(config);
let prBody = handlebars.compile(config.prBody)(config); let prBody = handlebars.compile(config.prBody)(config);
if (config.isGitHub && !config.privateRepo) { if (config.isGitHub && !config.privateRepo) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment