2023-08-30 01:42:34 -05:00
|
|
|
{
|
2023-11-16 14:45:10 -06:00
|
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
|
|
extends: [
|
|
|
|
'gitea>gitea/renovate-config',
|
|
|
|
':automergeMinor',
|
|
|
|
'schedule:automergeDaily',
|
|
|
|
'schedule:weekends',
|
|
|
|
],
|
2023-11-24 22:10:18 -06:00
|
|
|
labels: [
|
|
|
|
'kind/dependency',
|
|
|
|
],
|
2023-11-16 14:45:10 -06:00
|
|
|
automergeStrategy: 'squash',
|
2023-10-13 11:04:27 -05:00
|
|
|
customManagers: [
|
2023-11-16 14:45:10 -06:00
|
|
|
{
|
|
|
|
description: 'Gitea-version of https://docs.renovatebot.com/presets-regexManagers/#regexmanagersgithubactionsversions',
|
|
|
|
customType: 'regex',
|
2023-11-24 22:10:18 -06:00
|
|
|
fileMatch: [
|
|
|
|
'.gitea/workflows/.+\\.ya?ml$',
|
|
|
|
],
|
2023-11-16 14:45:10 -06:00
|
|
|
matchStrings: [
|
|
|
|
'# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[a-z-0-9]+?))?\\s+[A-Za-z0-9_]+?_VERSION\\s*:\\s*["\']?(?<currentValue>.+?)["\']?\\s',
|
|
|
|
],
|
|
|
|
},
|
2023-11-27 12:38:14 -06:00
|
|
|
{
|
|
|
|
description: 'Detect helm-unittest yaml schema file',
|
|
|
|
customType: 'regex',
|
|
|
|
fileMatch: ['.vscode/settings\\.json$'],
|
|
|
|
matchStrings: [
|
|
|
|
'https:\\/\\/raw\\.githubusercontent\\.com\\/(?<depName>[^\\s]+?)\\/(?<currentValue>v[0-9.]+?)\\/schema\\/helm-testsuite\\.json',
|
|
|
|
],
|
|
|
|
datasourceTemplate: 'github-releases',
|
|
|
|
},
|
2024-07-23 08:38:49 -05:00
|
|
|
{
|
|
|
|
'description': 'Automatically detect new Gitea releases',
|
|
|
|
'customType': 'regex',
|
|
|
|
'fileMatch': ['(^|/)Chart\\.yaml$'],
|
|
|
|
'matchStrings': [
|
|
|
|
'# renovate datasource=(?<datasource>\\S+) depName=(?<depName>\\S+) extractVersion=(?<extractVersion>\\S+)\\nappVersion:\\s?(?<currentValue>\\S+)\\n',
|
|
|
|
],
|
|
|
|
},
|
2023-11-16 14:45:10 -06:00
|
|
|
],
|
2023-09-14 11:48:36 -05:00
|
|
|
packageRules: [
|
|
|
|
{
|
2023-11-16 14:45:10 -06:00
|
|
|
groupName: 'subcharts (minor & patch)',
|
2023-11-24 22:10:18 -06:00
|
|
|
matchManagers: [
|
|
|
|
'helmv3',
|
|
|
|
],
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'minor',
|
|
|
|
'patch',
|
|
|
|
'digest',
|
|
|
|
],
|
2023-11-16 14:45:10 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
groupName: 'workflow dependencies (minor & patch)',
|
2023-11-24 22:10:18 -06:00
|
|
|
matchManagers: [
|
|
|
|
'github-actions',
|
|
|
|
'npm',
|
|
|
|
'custom.regex',
|
|
|
|
],
|
|
|
|
matchUpdateTypes: [
|
|
|
|
'minor',
|
|
|
|
'patch',
|
|
|
|
'digest',
|
|
|
|
],
|
2023-09-14 11:48:36 -05:00
|
|
|
},
|
2024-07-23 08:38:49 -05:00
|
|
|
{
|
|
|
|
description: 'Override changelog url for Helm image, to have release notes in our PRs',
|
|
|
|
matchDepNames: [
|
|
|
|
'alpine/helm',
|
|
|
|
],
|
|
|
|
changelogUrl: 'https://github.com/helm/helm',
|
|
|
|
},
|
2023-09-14 11:48:36 -05:00
|
|
|
],
|
2023-08-30 01:42:34 -05:00
|
|
|
}
|