mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
fix: Use res.upgrades when returning from branchify
This commit is contained in:
parent
1122f76e98
commit
80e4fd91fc
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ async function renovateRepository(packageFileConfig) {
|
|||
const res = await upgrades.branchifyUpgrades(allUpgrades, config.logger);
|
||||
config.errors = config.errors.concat(res.errors);
|
||||
config.warnings = config.warnings.concat(res.warnings);
|
||||
const branchUpgrades = res.branchUpgrades;
|
||||
const branchUpgrades = res.upgrades;
|
||||
config.logger.debug(`Updating ${branchUpgrades.length} branch(es)`);
|
||||
config.logger.trace({ config: branchUpgrades }, 'branchUpgrades');
|
||||
if (config.repoIsOnboarded) {
|
||||
|
|
Loading…
Reference in a new issue