Add config.js
This commit is contained in:
parent
9cce3b239b
commit
5b1b30c4fa
1 changed files with 35 additions and 0 deletions
35
config.js
Normal file
35
config.js
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
module.exports = {
|
||||||
|
endpoint: 'https://w9r.dev',
|
||||||
|
platform: 'gitea',
|
||||||
|
persistRepoData: true,
|
||||||
|
onboardingConfig: {
|
||||||
|
'extends': [
|
||||||
|
"local>w9r.dev/renovate-config"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
onboardingPrTitle: 'Configure Renovate [ci skip]',
|
||||||
|
labels: [
|
||||||
|
'renovate'
|
||||||
|
],
|
||||||
|
autodiscover: true,
|
||||||
|
hostRules: [
|
||||||
|
{
|
||||||
|
hostType: 'maven',
|
||||||
|
matchHost: 'https://nexus.w9r.dev',
|
||||||
|
username: process.env.MAVEN_USERNAME,
|
||||||
|
password: process.env.MAVEN_CENTRAL_TOKEN
|
||||||
|
},
|
||||||
|
{
|
||||||
|
hostType: 'docker',
|
||||||
|
matchHost: 'https://cr.w9r.dev',
|
||||||
|
username: process.env.MAVEN_USERNAME,
|
||||||
|
password: process.env.MAVEN_CENTRAL_TOKEN
|
||||||
|
}
|
||||||
|
],
|
||||||
|
packageRules: [
|
||||||
|
{
|
||||||
|
matchDatasources: ['maven'],
|
||||||
|
registryUrls: ['https://nexus.w9r.de/repository/group']
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
Loading…
Add table
Reference in a new issue