From 400c943230367a87d9e1ebe348f38927dab71c71 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 8 May 2026 12:45:49 +0200 Subject: [PATCH] fix: do not iterate over appstore repo it clashes with the same named app in server that is present since 34 Signed-off-by: Arthur Schiwon --- changelog/index.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/changelog/index.php b/changelog/index.php index 081177d..bc2de55 100644 --- a/changelog/index.php +++ b/changelog/index.php @@ -157,10 +157,12 @@ protected function getReposToIterate($head = 'master') $parameters = array(self::ORG_NAME); $repos = $paginator->fetchAll($organizationApi, 'repositories', $parameters); - // Filter out archived and disabled repos + // Filter out archived and disabled repos, and appstore (name clash) $results = array_filter($repos, function ($repo): bool { return $repo['archived'] === false - && $repo['disabled'] === false; + && $repo['disabled'] === false + && $repo['name'] !== 'appstore' + ; }); // Return repos names @@ -619,7 +621,7 @@ function ($a, $b) { if ($repoName === self::REPO_SERVER) { $output->writeln(" * #$number$status"); - } else { + } else { $output->writeln(" * $orgName/$repoName#$number$status"); } }