340bd4765f
GitLab provides the API URL as a predefined enviornment variables for each CI job. Therefore adding it to the config and using it there seems very useful. It should also improve the protability of the repository.
14 lines
385 B
JavaScript
14 lines
385 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,
|
|
}
|
|
};
|