mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 02:51:57 +01:00
26 lines
559 B
JavaScript
26 lines
559 B
JavaScript
|
module.exports = {
|
||
|
branchPrefix: 'renovate/',
|
||
|
username: 'renovate-release',
|
||
|
gitAuthor: 'Renovate Bot <bot@renovateapp.com>',
|
||
|
onboarding: true,
|
||
|
platform: 'github',
|
||
|
includeForks: false,
|
||
|
repositories: [
|
||
|
'manuel-rw/jellyfin-discord-music-bot',
|
||
|
],
|
||
|
packageRules: [
|
||
|
{
|
||
|
description: 'lockFileMaintenance',
|
||
|
matchUpdateTypes: [
|
||
|
'pin',
|
||
|
'digest',
|
||
|
'patch',
|
||
|
'minor',
|
||
|
'major',
|
||
|
'lockFileMaintenance',
|
||
|
],
|
||
|
dependencyDashboardApproval: false,
|
||
|
stabilityDays: 0,
|
||
|
},
|
||
|
],
|
||
|
};
|