![Sheogorath](/assets/img/avatar_default.png)
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.
16 lines
438 B
JavaScript
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
|
|
}
|
|
};
|