Compare commits

..

2 Commits

Author SHA1 Message Date
t.behrendt 0f304543cc feat(k8s): replace backupsidecar digest with proper version
CI / Test (bun-npm.json) (pull_request) Successful in 4s
CI / Test (common.json) (pull_request) Successful in 4s
CI / Test (docker-compose.json) (pull_request) Successful in 4s
CI / Test (action.json) (pull_request) Successful in 23s
CI / Test (golang.json) (pull_request) Successful in 4s
CI / Test (k8s.json) (pull_request) Successful in 4s
CI / Format (pull_request) Successful in 7s
CI / Test (helm.json) (pull_request) Successful in 22s
2026-07-02 20:01:01 +02:00
t.behrendt 97ffdb95d3 feat(action): allow grouping of all minor patch bumps (#84)
CD / Release (push) Successful in 4s
Reviewed-on: #84
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-02 12:04:35 +02:00
2 changed files with 15 additions and 1 deletions
+5
View File
@@ -9,6 +9,11 @@
"matchManagers": ["github-actions"], "matchManagers": ["github-actions"],
"addLabels": ["deps", "action"] "addLabels": ["deps", "action"]
}, },
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "actions"
},
{ {
"matchManagers": ["github-actions"], "matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"], "matchUpdateTypes": ["minor", "patch"],
+10 -1
View File
@@ -4,5 +4,14 @@
"kubernetes": { "kubernetes": {
"enabled": true, "enabled": true,
"labels": ["deps", "k8s"] "labels": ["deps", "k8s"]
} },
"packageRules": [
{
"matchManagers": ["kubernetes"],
"matchPackageNames": ["t.behrendt/backupsidecar"],
"matchRegistryUrls": ["gitea.t000-n.de/**"],
"replacementVersion": "0.2.17",
"pinDigests": true
}
]
} }