Compare commits

..

3 Commits

Author SHA1 Message Date
t.behrendt c6f7fdf144 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 3s
CI / Test (golang.json) (pull_request) Successful in 3s
CI / Test (action.json) (pull_request) Successful in 20s
CI / Test (helm.json) (pull_request) Successful in 4s
CI / Format (pull_request) Successful in 6s
CI / Test (k8s.json) (pull_request) Failing after 20s
2026-07-02 19:56:08 +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
t.behrendt de46a0e5d9 fix(action): set registry url for internal deps (#83)
CD / Release (push) Successful in 4s
Adding a registry for internal deps so that they can be differentiated from other registries.

Reviewed-on: #83
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-01 07:38:43 +02:00
2 changed files with 28 additions and 5 deletions
+21 -5
View File
@@ -9,15 +9,15 @@
"matchManagers": ["github-actions"],
"addLabels": ["deps", "action"]
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "actions"
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"t.behrendt/actions",
"t.behrendt/actions/*",
"t.behrendt/conventional-semantic-git-tag-increment",
"t.behrendt/k_deploy_workflows",
"t.behrendt/validate-json-by-json-schema-action",
"actions/checkout",
"actions/cache",
"actions/cache/*",
@@ -39,6 +39,22 @@
"automergeType": "pr",
"addLabels": ["automerge"]
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"matchPackageNames": [
"t.behrendt/actions",
"t.behrendt/actions/*",
"t.behrendt/conventional-semantic-git-tag-increment",
"t.behrendt/k_deploy_workflows",
"t.behrendt/validate-json-by-json-schema-action"
],
"matchRegistryUrls": ["https://gitea.t000-n.de/**"],
"automerge": true,
"platformAutomerge": true,
"automergeType": "pr",
"addLabels": ["automerge"]
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
+7
View File
@@ -4,5 +4,12 @@
"kubernetes": {
"enabled": true,
"labels": ["deps", "k8s"]
},
"packageRules": {
"matchManagers": ["kubernetes"],
"matchPackageNames": ["t.behrendt/backupsidecar"],
"matchRegistryUrls": ["gitea.t000-n.de/**"],
"replaceVersion": "0.2.17",
"pinDigests": true
}
}