1
0
Fork 0

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.
This commit is contained in:
Sheogorath 2020-05-17 15:41:08 +02:00
parent e0fdf5189a
commit 01ea579aef
No known key found for this signature in database
GPG key ID: C9B1C80737B9CE18

View file

@ -10,6 +10,7 @@ module.exports = {
onboardingConfig: {
extends: ['config:base'],
prConcurrentLimit: 5,
updateLockFiles: true
updateLockFiles: true,
gitLabAutomerge: true
}
};