blob: f7b2e2b933afd65e1f4ad74a85469d20bac17b5f [file]
SELECT
repo_name,
count() AS comments,
count(distinct actor_login) AS authors
FROM github_events
WHERE event_type = 'CommitCommentEvent'
GROUP BY repo_name
ORDER BY count() DESC
LIMIT 50