diff --git a/lib/workers/repository/cleanup.js b/lib/workers/repository/cleanup.js index afca0ab2377cb17592e1875f83c560e4f4d705db..6df97c52618e60d919e9821e2bdc189719ff1d55 100644 --- a/lib/workers/repository/cleanup.js +++ b/lib/workers/repository/cleanup.js @@ -7,6 +7,7 @@ async function pruneStaleBranches(config) { const { branchList } = config; logger.debug('Removing any stale branches'); logger.trace({ config }, `pruneStaleBranches`); + logger.debug(`config.repoIsOnboarded=${config.repoIsOnboarded}`); if (!config.branchList) { logger.debug('No branchList'); return; diff --git a/lib/workers/repository/init/index.js b/lib/workers/repository/init/index.js index 4fd2c2e5ad74ada918675aaf9f8d532e643fa022..75934c80fd9335db1e447b7818ced2cea33f7e68 100644 --- a/lib/workers/repository/init/index.js +++ b/lib/workers/repository/init/index.js @@ -10,6 +10,7 @@ async function initRepo(input) { config = await mergeRenovateConfig(config); checkIfConfigured(config); await checkBaseBranch(config); + logger.debug(`config.repoIsOnboarded=${config.repoIsOnboarded}`); return config; } diff --git a/lib/workers/repository/updates/branchify.js b/lib/workers/repository/updates/branchify.js index adc557e1ea8539a21bb5d80bc419f6d75bb12ee7..53be83bd85cfcb4a58b15e471c61c107b4d1770c 100644 --- a/lib/workers/repository/updates/branchify.js +++ b/lib/workers/repository/updates/branchify.js @@ -46,7 +46,7 @@ function branchifyUpgrades(config) { branch.branchName = branchName; branches.push(branch); } - logger.debug('3'); + logger.debug(`config.repoIsOnboarded=${config.repoIsOnboarded}`); const branchList = config.repoIsOnboarded ? branches.map(upgrade => upgrade.branchName) : config.branchList;