1
0
Fork 0
This repository has been archived on 2025-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
renovate-bot/config.js
Sheogorath 340bd4765f
Use GitLab CI URL from predefined environment variables
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.
2020-03-22 01:02:40 +01:00

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,
}
};