56f1014769
Provides an innitial version of the renovate bot config along with a gitlab-ci.yml that will run on scheduled setups.
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
module.exports = {
|
|
platform: 'gitlab',
|
|
endpoint: 'https://git.shivering-isles.com/api/v4/',
|
|
token: process.env.RENOVATE_TOKEN,
|
|
autodiscover: true,
|
|
|
|
logLevel: 'info',
|
|
|
|
onboarding: true,
|
|
onboardingConfig: {
|
|
extends: ['config:base'],
|
|
prConcurrentLimit: 5,
|
|
}
|
|
};
|