From 06524ee1dff3e74a98f4383169380c9236d31105 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Aug 2026 14:14:05 +0200 Subject: [PATCH 1/2] build: ship dbdoctor Signed-off-by: Arthur Schiwon --- brancher/branch.php | 1 + label-updater/config.json | 1 + milestoneupdater/config.json | 1 + tagger/tag.php | 35 +++++++++++++++++++++++++++++++++++ 4 files changed, 38 insertions(+) diff --git a/brancher/branch.php b/brancher/branch.php index ee23133..593bb3d 100644 --- a/brancher/branch.php +++ b/brancher/branch.php @@ -20,6 +20,7 @@ 'nextcloud/app_api', 'nextcloud/bruteforcesettings', 'nextcloud/circles', + 'nextcloud/dbdoctor', 'nextcloud/documentation', 'nextcloud/example-files', 'nextcloud/files_downloadlimit', diff --git a/label-updater/config.json b/label-updater/config.json index ddf53d9..ba3b325 100644 --- a/label-updater/config.json +++ b/label-updater/config.json @@ -9,6 +9,7 @@ "bruteforcesettings", "circles", "data_request", + "dbdoctor", "documentation", "end_to_end_encryption", "external", diff --git a/milestoneupdater/config.json b/milestoneupdater/config.json index 4ebe541..2288709 100644 --- a/milestoneupdater/config.json +++ b/milestoneupdater/config.json @@ -6,6 +6,7 @@ "app_api", "bruteforcesettings", "circles", + "dbdoctor", "documentation", "example-files", "files_downloadlimit", diff --git a/tagger/tag.php b/tagger/tag.php index 34cc72b..bb06a79 100644 --- a/tagger/tag.php +++ b/tagger/tag.php @@ -201,6 +201,40 @@ ]; break; case 'stable34': + $repositories = [ + 'nextcloud/server', + 'nextcloud/3rdparty', + 'nextcloud/activity', + 'nextcloud/app_api', + 'nextcloud/bruteforcesettings', + 'nextcloud/circles', + 'nextcloud/documentation', + 'nextcloud/example-files', + 'nextcloud/files_downloadlimit', + 'nextcloud/files_pdfviewer', + 'nextcloud/files_lock', + 'nextcloud/firstrunwizard', + 'nextcloud/logreader', + 'nextcloud/nextcloud_announcements', + 'nextcloud/notifications', + 'nextcloud/office', + 'nextcloud/password_policy', + 'nextcloud/photos', + 'nextcloud/privacy', + 'nextcloud/recommendations', + 'nextcloud/related_resources', + 'nextcloud/serverinfo', + 'nextcloud/survey_client', + 'nextcloud/suspicious_login', + 'nextcloud/text', + 'nextcloud/twofactor_nextcloud_notification', + 'nextcloud/twofactor_totp', + 'nextcloud/updater', + 'nextcloud/viewer', + 'nextcloud-gmbh/support', + ]; + break; + case 'stable35': case 'master': $repositories = [ 'nextcloud/server', @@ -209,6 +243,7 @@ 'nextcloud/app_api', 'nextcloud/bruteforcesettings', 'nextcloud/circles', + 'nextcloud/dbdoctor', 'nextcloud/documentation', 'nextcloud/example-files', 'nextcloud/files_downloadlimit', From 8a28dd3c564771befe13cbf6f38c83decf7f4ea9 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Aug 2026 14:15:33 +0200 Subject: [PATCH 2/2] refactor: remove 21 config Signed-off-by: Arthur Schiwon --- tagger/tag.php | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/tagger/tag.php b/tagger/tag.php index bb06a79..b910115 100644 --- a/tagger/tag.php +++ b/tagger/tag.php @@ -21,32 +21,6 @@ } switch($originalBranch) { - case 'stable21': - // keep them in sync with the ones from brancher/branch.php - $repositories = [ - 'nextcloud/server', - 'nextcloud/3rdparty', - 'nextcloud/activity', - 'nextcloud/example-files', - 'nextcloud/files_pdfviewer', - 'nextcloud/files_rightclick', - 'nextcloud/files_videoplayer', - 'nextcloud/firstrunwizard', - 'nextcloud/logreader', - 'nextcloud/nextcloud_announcements', - 'nextcloud/notifications', - 'nextcloud/password_policy', - 'nextcloud/photos', - 'nextcloud/privacy', - 'nextcloud/recommendations', - 'nextcloud/serverinfo', - 'nextcloud/survey_client', - 'nextcloud/text', - 'nextcloud/updater', - 'nextcloud/viewer', - 'nextcloud-gmbh/support', - ]; - break; case 'stable22': case 'stable23': case 'stable24':