Skip to content

Commit dfc76cf

Browse files
committed
Don't show archived and private GitHub repos
1 parent 974ec1c commit dfc76cf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

express/frontend/src/lib/ioBroker.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,11 @@ export async function getMyAdapterRepos(
7777
getLatest(),
7878
]);
7979
return repos.filter((repo) => {
80-
if (!repo.name.startsWith("ioBroker.")) {
80+
if (
81+
!repo.name.startsWith("ioBroker.") ||
82+
repo.archived ||
83+
repo.private
84+
) {
8185
return false;
8286
}
8387

0 commit comments

Comments
 (0)