forgejo-helm/renovate.json

101 lines
3.1 KiB
JSON
Raw Permalink Normal View History

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2023-03-07 13:16:50 +00:00
"extends": ["forgejo-contrib/forgejo-renovate//base.json"],
"assignees": ["viceice"],
"enabledManagers": ["helmv3", "nodenv", "npm", "regex", "github-actions"],
"packageRules": [
2023-01-04 14:22:17 +00:00
{
"matchManagers": ["helmv3"],
"matchUpdateTypes": ["minor", "patch"],
"semanticCommitType": "fix"
},
{
"matchManagers": ["helmv3"],
"matchUpdateTypes": ["major"],
"semanticCommitType": "feat"
},
{
"matchManagers": ["regex"],
2023-01-19 11:44:04 +00:00
"matchDepNames": ["forgejo"],
"matchUpdateTypes": ["patch"],
2023-01-04 14:22:17 +00:00
"semanticCommitType": "fix"
},
{
"matchManagers": ["regex"],
2023-01-19 11:44:04 +00:00
"matchDepNames": ["forgejo"],
"matchUpdateTypes": ["major", "minor"],
2023-01-04 14:22:17 +00:00
"semanticCommitType": "feat"
},
2023-01-19 11:48:01 +00:00
{
"description": "Automerge patch deps updates",
"matchManagers": ["helmv3"],
"matchFiles": ["Chart.yaml"],
"matchUpdateTypes": ["patch"],
"automerge": true
2023-07-03 13:00:36 +00:00
},
{
"description": "Automerge dev deps updates",
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
2023-07-03 13:00:36 +00:00
"automerge": true
},
2024-02-07 11:46:49 +00:00
{
"description": "Automerge node updates",
"matchManagers": ["nodenv"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"description": "Automerge some updates",
"matchDepNames": ["pnpm", "helm-unittest"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"description": "Separate minor and patch updates for kindest",
"matchPackageNames": ["kindest/node"],
"separateMinorPatch": true
},
{
"description": "Require approval and no automerge for kindest major and minor updates",
"matchPackageNames": ["kindest/node"],
"matchUpdateTypes": ["major", "minor"],
"dependencyDashboardApproval": true,
"automerge": false
2023-01-04 14:22:17 +00:00
}
],
"customManagers": [
2023-01-04 14:22:17 +00:00
{
"description": "Update forgeo version in chart",
"customType": "regex",
2023-01-04 14:22:17 +00:00
"fileMatch": ["^Chart\\.yaml$"],
"matchStrings": ["appVersion: (?<currentValue>.+?)\\s"],
"depNameTemplate": "forgejo",
"packageNameTemplate": "codeberg.org/forgejo/forgejo",
"datasourceTemplate": "docker"
2023-04-17 09:40:06 +00:00
},
{
"description": "Detect helm-unittest yaml schema file",
"customType": "regex",
"fileMatch": [".vscode/settings\\.json$"],
"matchStrings": [
2024-03-20 14:55:09 +00:00
"https://raw\\.githubusercontent\\.com/helm-unittest/helm-unittest/(?<currentValue>v[0-9.]+?)/schema/helm-testsuite\\.json"
],
2024-03-20 14:55:09 +00:00
"depNameTemplate": "helm-unittest",
"packageNameTemplate": "helm-unittest/helm-unittest",
"datasourceTemplate": "github-releases"
},
{
"customType": "regex",
"description": "Update kindest kubernetes references",
2024-03-20 14:55:09 +00:00
"fileMatch": ["^\\.forgejo/workflows/[^/]+\\.ya?ml$"],
"matchStrings": [
" +- (?<currentValue>v\\d+\\.\\d+\\.\\d+) # renovate: kindest\\n"
],
"depNameTemplate": "kindest/node",
"datasourceTemplate": "docker"
}
]
}