Compare commits

..

3 Commits

Author SHA1 Message Date
t.behrendt b632331ca0 fix(action): set registry url for internal deps
CI / Test (bun-npm.json) (pull_request) Successful in 4s
CI / Test (common.json) (pull_request) Successful in 3s
CI / Test (docker-compose.json) (pull_request) Successful in 4s
CI / Test (golang.json) (pull_request) Successful in 4s
CI / Test (helm.json) (pull_request) Successful in 4s
CI / Test (action.json) (pull_request) Successful in 26s
CI / Test (k8s.json) (pull_request) Successful in 4s
CI / Format (pull_request) Successful in 1m1s
2026-07-01 07:37:04 +02:00
t.behrendt 6000bf3600 ci: test golang config (#82)
CD / Release (push) Successful in 45s
Reviewed-on: #82
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-01 07:23:08 +02:00
t.behrendt a69e76a3bb feat: allow automerge of actions/cache v6 (#81)
CD / Release (push) Successful in 5s
Reviewed-on: #81
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-01 07:09:08 +02:00
2 changed files with 27 additions and 10 deletions
+1
View File
@@ -16,6 +16,7 @@ jobs:
- "common.json"
- "docker-compose.json"
- "bun-npm.json"
- "golang.json"
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Validate "${{ matrix.json-file }}"
+26 -10
View File
@@ -13,30 +13,20 @@
"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/*",
"actions/setup-go",
"azure/setup-kubectl",
"azure/setup-helm",
"azure/k8s-set-context",
"azure/k8s-create-secret",
"azure/k8s-deploy",
"azure/k8s-lint",
"helmfile/helmfile-action",
"docker/setup-buildx-action",
"docker/login-action",
"docker/build-push-action",
"oven-sh/setup-bun"
],
"automerge": true,
@@ -44,6 +34,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"],
@@ -53,6 +59,16 @@
"platformAutomerge": true,
"automergeType": "pr",
"addLabels": ["automerge"]
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"matchPackageNames": ["actions/cache"],
"matchNewValue": "v6.0.0",
"automerge": true,
"platformAutomerge": true,
"automergeType": "pr",
"addLabels": ["automerge"]
}
]
}