Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
c4cdfe89
Commit
c4cdfe89
authored
7 years ago
by
Rhys Arkins
Browse files
Options
Downloads
Patches
Plain Diff
logs: log configs when baseBranches in use
parent
6f041b58
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/workers/repository/index.js
+2
-0
2 additions, 0 deletions
lib/workers/repository/index.js
with
2 additions
and
0 deletions
lib/workers/repository/index.js
+
2
−
0
View file @
c4cdfe89
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment