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

logs: log configs when baseBranches in use

parent 6f041b58
No related merge requests found
...@@ -29,6 +29,7 @@ async function renovateRepository(repoConfig, token, loop = 1) { ...@@ -29,6 +29,7 @@ async function renovateRepository(repoConfig, token, loop = 1) {
// At this point we know if we have multiple branches // At this point we know if we have multiple branches
// Do the following for every branch // Do the following for every branch
const commonConfig = JSON.parse(JSON.stringify(config)); const commonConfig = JSON.parse(JSON.stringify(config));
logger.debug({ config: commonConfig }, 'commonConfig');
const configs = []; const configs = [];
logger.info({ baseBranches: config.baseBranches }, 'baseBranches'); logger.info({ baseBranches: config.baseBranches }, 'baseBranches');
for (const [index, baseBranch] of commonConfig.baseBranches.entries()) { for (const [index, baseBranch] of commonConfig.baseBranches.entries()) {
...@@ -36,6 +37,7 @@ async function renovateRepository(repoConfig, token, loop = 1) { ...@@ -36,6 +37,7 @@ async function renovateRepository(repoConfig, token, loop = 1) {
config.baseBranch = baseBranch; config.baseBranch = baseBranch;
config.branchPrefix += config.branchPrefix +=
config.baseBranches.length > 1 ? `${baseBranch}-` : ''; config.baseBranches.length > 1 ? `${baseBranch}-` : '';
logger.debug({ config }, 'baseBranch config');
platform.setBaseBranch(baseBranch); platform.setBaseBranch(baseBranch);
config = await resolvePackageFiles(config); config = await resolvePackageFiles(config);
config = await determineUpdates(config); config = await determineUpdates(config);
......
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