Last active
February 26, 2017 02:45
-
-
Save dankohn/12398a36c13ab0033ff007c0110bba0e to your computer and use it in GitHub Desktop.
K8s contributors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
actor.login as contributor, | |
COUNT(repo.name) AS commits, | |
FROM | |
[githubarchive:year.2016] | |
WHERE | |
type IN ("PushEvent") AND | |
repo.name = "kubernetes/kubernetes" | |
GROUP BY | |
contributor | |
ORDER BY | |
commits DESC | |
LIMIT | |
100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
contributor | commits | |
---|---|---|
k8s-merge-robot | 7017 | |
fabioy | 124 | |
jlowdermilk | 108 | |
lavalamp | 104 | |
saad-ali | 102 | |
roberthbailey | 93 | |
gmarek | 86 | |
bgrant0607 | 84 | |
wojtek-t | 83 | |
alex-mohr | 74 | |
a-robinson | 70 | |
jessfraz | 69 | |
pwittrock | 69 | |
mikedanese | 60 | |
david-mcmahon | 60 | |
zmerlynn | 58 | |
dchen1107 | 49 | |
ihmccreery | 33 | |
piosz | 31 | |
spxtr | 28 | |
fgrzadkowski | 26 | |
thockin | 26 | |
foxish | 25 | |
mwielgus | 20 | |
ArtfulCoder | 18 | |
brendandburns | 17 | |
eparis | 17 | |
davidopp | 15 | |
ixdy | 13 | |
sttts | 12 | |
erictune | 10 | |
bprashanth | 9 | |
caesarxuchao | 9 | |
jingxu97 | 8 | |
nikhiljindal | 7 | |
mml | 6 | |
vishh | 6 | |
krousey | 6 | |
quinton-hoole | 5 | |
maisem | 5 | |
fejta | 4 | |
Random-Liu | 4 | |
apelisse | 4 | |
tmrts | 4 | |
freehan | 4 | |
mtaufen | 3 | |
justinsb | 2 | |
smarterclayton | 2 | |
girishkalele | 2 | |
Q-Lee | 2 | |
jszczepkowski | 2 | |
liggitt | 1 | |
jbeda | 1 | |
yujuhong | 1 | |
ncdc | 1 | |
grodrigues3 | 1 | |
sarahnovotny | 1 | |
luxas | 1 | |
cjcullen | 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment