Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: remove from displaying repositories with 0 prs #203

Merged
merged 1 commit into from
Dec 2, 2024
Merged
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
feat: remove from displaying repositories with 0 score
akorchyn committed Dec 2, 2024

Verified

This commit was signed with the committer’s verified signature.
akorchyn Artur Yurii Korchynskyi
commit b3d6b35db9d40248662d5b744496f9fd21947f07

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions server/sql/get_repo_leaderboard.sql
Original file line number Diff line number Diff line change
@@ -47,6 +47,8 @@ GROUP BY
r.open_issues,
r.stars,
r.forks
HAVING
COUNT(pr.id) > 0
ORDER BY
total_prs DESC,
open_issues DESC,