mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 15:06:27 +00:00
chore: log branchList before pruning
This commit is contained in:
parent
b32b7447da
commit
5a02a35afb
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ async function pruneStaleBranches(config) {
|
||||||
let renovateBranches = await platform.getAllRenovateBranches(
|
let renovateBranches = await platform.getAllRenovateBranches(
|
||||||
config.branchPrefix
|
config.branchPrefix
|
||||||
);
|
);
|
||||||
logger.debug(`renovateBranches=${renovateBranches}`);
|
logger.debug({ branchList, renovateBranches });
|
||||||
const lockFileBranch = `${config.branchPrefix}lock-file-maintenance`;
|
const lockFileBranch = `${config.branchPrefix}lock-file-maintenance`;
|
||||||
if (renovateBranches.includes(lockFileBranch)) {
|
if (renovateBranches.includes(lockFileBranch)) {
|
||||||
logger.debug('Checking lock file branch');
|
logger.debug('Checking lock file branch');
|
||||||
|
|
Loading…
Reference in a new issue