Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions changelog/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -619,7 +621,7 @@ function ($a, $b) {

if ($repoName === self::REPO_SERVER) {
$output->writeln(" * #$number$status");
} else {
} else {
$output->writeln(" * $orgName/$repoName#$number$status");
}
}
Expand Down