From 4a1bfd06c2c94ab0fa855fd738c48996efb9b34f Mon Sep 17 00:00:00 2001 From: Bendik Aagaard Lynghaug Date: Sun, 30 Aug 2026 16:00:53 +0200 Subject: [PATCH] Starred repos: leave the star counts out for now --- questions/index.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/questions/index.yaml b/questions/index.yaml index 3b420bf..431ace4 100644 --- a/questions/index.yaml +++ b/questions/index.yaml @@ -27,11 +27,10 @@ alternatives: # repos can point at something the public can actually # open; a private repo with no website gets no link at all # (the card renders an unlinked heading) instead of a 404. - # Gitea calls the star count stars_count, not GitHub's - # stargazers_count. + # TODO: star counts (Gitea's .stars_count) are left out until + # they're worth showing - add `stars: .stars_count` back here. jq: > .[] | {name: .name, description: .description, - stars: .stars_count, url: (if .website != null and .website != "" then .website elif .private then null else .html_url end)}