mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-12-13 22:00:38 +05:30
d40bd674fa
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
170 lines
3.5 KiB
Plaintext
170 lines
3.5 KiB
Plaintext
{
|
|
enabled: true,
|
|
dependencyDashboard: true,
|
|
dependencyDashboardTitle: 'Renovate Dashboard',
|
|
assigneesFromCodeOwners: true,
|
|
reviewersFromCodeOwners: true,
|
|
suppressNotifications: [
|
|
'prIgnoreNotification',
|
|
],
|
|
prConcurrentLimit: 5,
|
|
'helm-values': {
|
|
enabled: false,
|
|
},
|
|
helmv3: {
|
|
fileMatch: [
|
|
'charts/.+/Chart\\.yaml$',
|
|
],
|
|
},
|
|
packageRules: [
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
commitMessageTopic: 'Helm chart {{depName}}',
|
|
separateMinorPatch: true,
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'github-tags',
|
|
],
|
|
matchPackageNames: [
|
|
'potiuk/get-workflow-origin',
|
|
],
|
|
versioning: 'regex:^v(?<major>\\d+)_(?<minor>\\d+)(_(?<patch>\\d+))?$',
|
|
},
|
|
{
|
|
matchManagers: [
|
|
'github-actions',
|
|
],
|
|
automerge: true,
|
|
automergeType: 'branch',
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
'patch',
|
|
],
|
|
},
|
|
{
|
|
matchManagers: [
|
|
'github-actions',
|
|
],
|
|
automerge: true,
|
|
automergeType: 'branch',
|
|
matchUpdateTypes: [
|
|
'digest',
|
|
],
|
|
schedule: [
|
|
'every 1 months on the first day of the month',
|
|
],
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
commitMessagePrefix: '[{{{parentDir}}}]',
|
|
branchTopic: '{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}',
|
|
matchUpdateTypes: [
|
|
'major',
|
|
],
|
|
bumpVersion: 'major',
|
|
labels: [
|
|
'type/major',
|
|
],
|
|
matchPackageNames: [
|
|
'common',
|
|
],
|
|
groupName: 'common library major',
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
],
|
|
bumpVersion: 'minor',
|
|
labels: [
|
|
'type/minor',
|
|
],
|
|
matchPackageNames: [
|
|
'common',
|
|
],
|
|
groupName: 'common library minor',
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
matchUpdateTypes: [
|
|
'patch',
|
|
],
|
|
bumpVersion: 'patch',
|
|
labels: [
|
|
'type/patch',
|
|
],
|
|
matchPackageNames: [
|
|
'common',
|
|
],
|
|
groupName: 'common library patch',
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
commitMessagePrefix: '[{{{parentDir}}}]',
|
|
branchTopic: '{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}',
|
|
matchUpdateTypes: [
|
|
'major',
|
|
],
|
|
bumpVersion: 'major',
|
|
labels: [
|
|
'type/major',
|
|
],
|
|
schedule: [
|
|
'every 3 months on the first day of the month',
|
|
],
|
|
matchPackageNames: [
|
|
'!common',
|
|
],
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
],
|
|
bumpVersion: 'minor',
|
|
labels: [
|
|
'type/minor',
|
|
],
|
|
groupName: 'external dependency minor',
|
|
schedule: [
|
|
'every 2 months on the first day of the month',
|
|
],
|
|
matchPackageNames: [
|
|
'!common',
|
|
],
|
|
},
|
|
{
|
|
matchDatasources: [
|
|
'helm',
|
|
],
|
|
matchUpdateTypes: [
|
|
'patch',
|
|
],
|
|
bumpVersion: 'patch',
|
|
labels: [
|
|
'type/patch',
|
|
],
|
|
groupName: 'external dependency patch',
|
|
schedule: [
|
|
'every 1 months on the first day of the month',
|
|
],
|
|
matchPackageNames: [
|
|
'!common',
|
|
],
|
|
},
|
|
],
|
|
}
|