
The Renovate config in this repository needs migrating. Typically this is because one or more configuration options you are using have been renamed. You don't need to merge this PR right away, because Renovate will continue to migrate these fields internally each time it runs. But later some of these fields may be fully deprecated and the migrations removed. So it's a good idea to merge this migration PR soon. #### [PLEASE NOTE](https://docs.renovatebot.com/configuration-options#configmigration): JSON5 config file migrated! All comments & trailing commas were removed. 🔕 **Ignore**: Close this PR and you won't be reminded about config migration again, but one day your current config may no longer be valid. ❓ Got questions? Does something look wrong to you? Please don't hesitate to [request help here](https://github.com/renovatebot/renovate/discussions). --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/861 Co-authored-by: Renovate Bot <renovate-bot@gitea.com> Co-committed-by: Renovate Bot <renovate-bot@gitea.com>
125 lines
3.1 KiB
Plaintext
125 lines
3.1 KiB
Plaintext
{
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
extends: [
|
|
'gitea>gitea/renovate-config',
|
|
':automergeMinor',
|
|
'schedule:automergeDaily',
|
|
'schedule:weekends',
|
|
],
|
|
labels: [
|
|
'kind/dependency',
|
|
],
|
|
digest: {
|
|
automerge: true,
|
|
},
|
|
automergeStrategy: 'squash',
|
|
'git-submodules': {
|
|
enabled: true,
|
|
},
|
|
customManagers: [
|
|
{
|
|
description: 'Gitea-version of https://docs.renovatebot.com/presets-regexManagers/#regexmanagersgithubactionsversions',
|
|
customType: 'regex',
|
|
managerFilePatterns: [
|
|
'/.gitea/workflows/.+\\.ya?ml$/',
|
|
],
|
|
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',
|
|
],
|
|
},
|
|
{
|
|
description: 'Detect helm-unittest yaml schema file',
|
|
customType: 'regex',
|
|
managerFilePatterns: [
|
|
'/.vscode/settings\\.json$/',
|
|
],
|
|
matchStrings: [
|
|
'https:\\/\\/raw\\.githubusercontent\\.com\\/(?<depName>[^\\s]+?)\\/(?<currentValue>v[0-9.]+?)\\/schema\\/helm-testsuite\\.json',
|
|
],
|
|
datasourceTemplate: 'github-releases',
|
|
},
|
|
{
|
|
description: 'Automatically detect new Gitea releases',
|
|
customType: 'regex',
|
|
managerFilePatterns: [
|
|
'/(^|/)Chart\\.yaml$/',
|
|
],
|
|
matchStrings: [
|
|
'# renovate datasource=(?<datasource>\\S+) depName=(?<depName>\\S+) extractVersion=(?<extractVersion>\\S+)\\nappVersion:\\s?(?<currentValue>\\S+)\\n',
|
|
],
|
|
},
|
|
],
|
|
packageRules: [
|
|
{
|
|
groupName: 'subcharts (minor & patch)',
|
|
matchManagers: [
|
|
'helmv3',
|
|
],
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
'patch',
|
|
'digest',
|
|
],
|
|
},
|
|
{
|
|
groupName: 'bats testing framework',
|
|
matchManagers: [
|
|
'git-submodules',
|
|
],
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
'patch',
|
|
'digest',
|
|
],
|
|
},
|
|
{
|
|
groupName: 'workflow dependencies (minor & patch)',
|
|
matchManagers: [
|
|
'github-actions',
|
|
'npm',
|
|
'custom.regex',
|
|
],
|
|
matchUpdateTypes: [
|
|
'minor',
|
|
'patch',
|
|
'digest',
|
|
],
|
|
matchFileNames: [
|
|
'!Chart.yaml',
|
|
],
|
|
},
|
|
{
|
|
description: 'Update README.md on changes in values.yaml',
|
|
matchManagers: [
|
|
'helm-values',
|
|
],
|
|
postUpgradeTasks: {
|
|
commands: [
|
|
'install-tool node',
|
|
'make readme',
|
|
],
|
|
fileFilters: [
|
|
'README.md',
|
|
],
|
|
executionMode: 'update',
|
|
},
|
|
},
|
|
{
|
|
description: 'Override changelog url for Helm image, to have release notes in our PRs',
|
|
matchDepNames: [
|
|
'alpine/helm',
|
|
],
|
|
changelogUrl: 'https://github.com/helm/helm',
|
|
},
|
|
{
|
|
description: 'Bump Gitea as fast as possible - not only on weekends',
|
|
matchDepNames: [
|
|
'go-gitea/gitea',
|
|
],
|
|
schedule: [
|
|
'at any time',
|
|
],
|
|
},
|
|
],
|
|
}
|