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 01ea579aef
enable gitlab automerge by default
This patch changes the automerge config to use the gitlab native feature
of automerging changing using the "merge if CI pipeline success"
feature. This should prevent the current situation where automerge is
enabled but not used due to the fact that renovate bots runs as cronjob
instead of being the server-side application.
2020-05-17 15:47:49 +02:00

16 lines
438 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,
gitLabAutomerge: true
}
};