mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
25 lines
588 B
Plaintext
25 lines
588 B
Plaintext
{
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
|
|
packageRules: [
|
|
{
|
|
matchManagers: ['helm-values'],
|
|
matchFileNames: ['charts/*/values.yaml'],
|
|
minimumReleaseAge: '0',
|
|
pinDigests: false,
|
|
},
|
|
],
|
|
|
|
customManagers: [
|
|
{
|
|
customType: 'regex',
|
|
description: 'Update appVersion in Chart.yaml to match Docker image',
|
|
fileMatch: ['(^|/)Chart\\.yaml$'],
|
|
matchStrings: [
|
|
'#\\s+renovate:\\s+image=(?<depName>\\S*)\nappVersion:\\s+"(?<currentValue>\\S*)"',
|
|
],
|
|
datasourceTemplate: 'docker',
|
|
},
|
|
],
|
|
}
|