e0fdf5189a
This will make sure that not just dependency files but also the lock files will be managed by renovatebot, which should improve the ability to automerge changes.
15 lines
411 B
JavaScript
15 lines
411 B
JavaScript
module.exports = {
|
|
platform: 'gitlab',
|
|
endpoint: process.env.CI_API_V4_URL || 'https://git.shivering-isles.com/api/v4/',
|
|
token: process.env.RENOVATE_TOKEN,
|
|
autodiscover: true,
|
|
gitAuthor: 'Renovate Bot <renovate-bot@sheogorath.shivering-isles.com>',
|
|
logLevel: 'info',
|
|
|
|
onboarding: true,
|
|
onboardingConfig: {
|
|
extends: ['config:base'],
|
|
prConcurrentLimit: 5,
|
|
updateLockFiles: true
|
|
}
|
|
};
|