forgejo-helm/renovate.json

62 lines
1.9 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", "npm", "regex", "woodpecker"],
"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"],
"automerge": true
2023-01-04 14:22:17 +00:00
}
],
"regexManagers": [
{
"description": "Update forgeo version in chart",
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": "Update helm unittest plugin",
2023-04-17 09:40:06 +00:00
"fileMatch": ["^\\.woodpecker/[a-z-]+\\.yml$"],
"matchStrings": ["helm plugin install --version (?<currentValue>.+?) https://github.com/helm-unittest/helm-unittest\\s"],
"depNameTemplate": "helm-unittest",
"packageNameTemplate": "helm-unittest/helm-unittest",
"datasourceTemplate": "github-releases"
}
]
}