1
0
Fork 0

Initial commit

Provides an innitial version of the renovate bot config along with a
gitlab-ci.yml that will run on scheduled setups.
This commit is contained in:
Sheogorath 2019-10-31 20:46:42 +01:00
commit 56f1014769
No known key found for this signature in database
GPG key ID: C9B1C80737B9CE18
2 changed files with 27 additions and 0 deletions

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
image: docker.io/renovate/renovate:19
stages:
- CI
run:
stage: CI
before_script:
- cp config.js /usr/src/app/config.js
script:
- node /usr/src/app/dist/renovate.js
only:
- schedules

14
config.js Normal file
View file

@ -0,0 +1,14 @@
module.exports = {
platform: 'gitlab',
endpoint: 'https://git.shivering-isles.com/api/v4/',
token: process.env.RENOVATE_TOKEN,
autodiscover: true,
logLevel: 'info',
onboarding: true,
onboardingConfig: {
extends: ['config:base'],
prConcurrentLimit: 5,
}
};