From 82244409aa512030806e2c11659f7ebed07b6f89 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 6 May 2024 04:17:38 +0200 Subject: [PATCH] autoupdater: list updated apps on the matrix message --- tools/autoupdate_app_sources/autoupdate_app_sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/autoupdate_app_sources/autoupdate_app_sources.py b/tools/autoupdate_app_sources/autoupdate_app_sources.py index 70c1be0..5a16330 100755 --- a/tools/autoupdate_app_sources/autoupdate_app_sources.py +++ b/tools/autoupdate_app_sources/autoupdate_app_sources.py @@ -714,7 +714,7 @@ def main() -> None: if apps_updated: paste_message += f"\n{'=' * 80}\nApps updated:" - matrix_message += f"\n- {len(apps_updated)} new apps PRs" + matrix_message += f"\n- {len(apps_updated)} new apps PRs: {', '.join(str(app) for app in apps_updated.keys())}\n" for app, info in apps_updated.items(): paste_message += f"\n- {app}" paste_message += (