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:
commit
56f1014769
2 changed files with 27 additions and 0 deletions
13
.gitlab-ci.yml
Normal file
13
.gitlab-ci.yml
Normal 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
14
config.js
Normal 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,
|
||||
}
|
||||
};
|
Reference in a new issue