mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
parent
5befcc58f4
commit
7e43fce47b
1 changed files with 30 additions and 27 deletions
|
@ -58,7 +58,9 @@ async function ensurePr(upgrades) {
|
|||
upgrade.changeLogToVersion
|
||||
);
|
||||
// Store changelog markdown for backwards compatibility
|
||||
config.changelog = config.changelog || changelogHelper.getMarkdown(logJSON);
|
||||
if (logJSON) {
|
||||
config.changelog =
|
||||
config.changelog || changelogHelper.getMarkdown(logJSON);
|
||||
upgrade.repositoryUrl = logJSON.project.repository;
|
||||
upgrade.githubName = logJSON.project.github;
|
||||
upgrade.releases = [];
|
||||
|
@ -85,6 +87,7 @@ async function ensurePr(upgrades) {
|
|||
}
|
||||
upgrade.releases.push(release);
|
||||
});
|
||||
}
|
||||
config.upgrades.push(upgrade);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue