Compare commits

...

3 Commits
0.2.0 ... 0.3.1

Author SHA1 Message Date
1fd6dea387 fix: k8s config to reference yaml file instead of json (#5)
All checks were successful
CD / Release (push) Successful in 12s
Ups, something got messed up during migration. k8s manifests are of course of file type yaml and not json.

Reviewed-on: #5
Reviewed-by: branch-buddy <branch-buddy@t00n.de>
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-10-11 08:51:03 +02:00
bee0ee03a4 feat: enable semantic commits (#4)
All checks were successful
CD / Release (push) Successful in 15s
Reviewed-on: #4
Reviewed-by: branch-buddy <branch-buddy@t00n.de>
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-10-10 18:04:31 +02:00
d9c0a19458 fix: docker-compose label to just be docker (#3)
All checks were successful
CD / Release (push) Successful in 6s
The label added for docker-compose related package updates is supposed to be "docker" and not "docker-compose".

Reviewed-on: #3
Reviewed-by: branch-buddy <branch-buddy@t00n.de>
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-10-08 19:22:48 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true
"dependencyDashboard": true,
"semanticCommits": "enabled"
}

View File

@@ -4,6 +4,6 @@
"digest": {
"enabled": true
},
"addLabels": ["deps", "docker-compose"]
"addLabels": ["deps", "docker"]
}
}

View File

@@ -2,7 +2,7 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"kubernetes": {
"enabled": true,
"fileMatch": ["^k8s/*\\.json$"],
"fileMatch": ["^k8s/*\\.yaml$"],
"labels": ["deps", "k8s"]
}
}