From 8afc2b18bec3ccff59b8f17337aa22b655ed57f0 Mon Sep 17 00:00:00 2001 From: bbhtt Date: Sat, 1 Nov 2025 15:42:09 +0530 Subject: [PATCH] Exclude appids starting with runtime or sdk prefix fully --- .github/scripts/domain_from_appid.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/scripts/domain_from_appid.py b/.github/scripts/domain_from_appid.py index 4c13a85..fa0abe6 100644 --- a/.github/scripts/domain_from_appid.py +++ b/.github/scripts/domain_from_appid.py @@ -47,14 +47,16 @@ def get_domain(appid: str) -> str: if appid.startswith( ( - "org.freedesktop.Platform.GStreamer.", - "org.freedesktop.Platform.Icontheme.", - "org.freedesktop.Platform.VulkanLayer.", - "org.freedesktop.Sdk.Extension.", + "org.freedesktop.Platform.", + "org.freedesktop.Sdk.", + "org.gnome.Platform.", + "org.gnome.Sdk.", "org.gtk.Gtk3theme.", "org.kde.KStyle.", + "org.kde.Platform.", "org.kde.PlatformInputContexts.", "org.kde.PlatformTheme.", + "org.kde.Sdk.", "org.kde.WaylandDecoration.", ) ):