28 lines
1.5 KiB
JavaScript
28 lines
1.5 KiB
JavaScript
|
|
module.exports = {
|
|
platform: 'gitea',
|
|
endpoint: 'https://git.morpheusnox.shop/api/v1',
|
|
token: process.env.RENOVATE_TOKEN,
|
|
autodiscover: true,
|
|
autodiscoverFilter: 'x3r0th/*',
|
|
onboarding: false,
|
|
requireConfig: 'ignored',
|
|
gitAuthor: 'Renovate Bot <renovate@git.morpheusnox.shop>',
|
|
onboardingConfig: {
|
|
extends: ['config:base'],
|
|
},
|
|
|
|
packageRules: [
|
|
{
|
|
matchUpdateTypes: ['minor', 'patch', 'pin', 'digest'],
|
|
automerge: true,
|
|
automergeType: 'branch',
|
|
},
|
|
{
|
|
matchUpdateTypes: ['major'],
|
|
automerge: false,
|
|
},
|
|
],
|
|
|
|
suppressNotifications: ['prIgnoreNotification'],
|
|
}; |