fix: align multi-service app version directories

Map the Flagsmith and Kaneo application services so Renovate can select their target versions, and rename the current Flagsmith directory to match its updated image tag.
This commit is contained in:
okxlin
2026-07-29 00:34:03 +08:00
parent 7ad01b42b7
commit 5ffd10bf9c
9 changed files with 16 additions and 0 deletions
+6
View File
@@ -17,6 +17,12 @@
"diskover-linuxserver": [
"diskover"
],
"flagsmith": [
"flagsmith"
],
"kaneo": [
"kaneo"
],
"karakeep": [
"karakeep"
],
@@ -529,6 +529,16 @@ class RenovateAppVersionTests(unittest.TestCase):
)
)
def test_multi_service_app_versions_follow_the_application_image(self):
primary = json.loads(
(REPO_ROOT / ".github" / "renovate-primary-services.json").read_text(
encoding="utf-8"
)
)
self.assertEqual(["flagsmith"], primary["flagsmith"])
self.assertEqual(["kaneo"], primary["kaneo"])
def test_automerge_whitelist_contains_only_single_service_apps(self):
apps = [
line.strip()