From 4a4faead0ac950ce9a603bff33f34f71b00eba10 Mon Sep 17 00:00:00 2001 From: Paul Copplestone Date: Sun, 25 Jul 2021 12:45:26 +0800 Subject: [PATCH] fetch all contributors --- Makefile | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 99cdf82088..49847513c9 100644 --- a/Makefile +++ b/Makefile @@ -2,17 +2,25 @@ REPO_DIR=$(shell pwd) help: @echo "\SCRIPTS\n" - @echo "make github.users # pull a list of all contributors" + @echo "make github.contributors # pull a list of all contributors" @echo "make github.issues # pull a list of all issue creators" @echo "make github.repos # pull a list of our repos" @echo "make github.traction # get a history of stargazers for our individual repos" -github.users: - curl -sS https://api.github.com/repos/supabase/supabase/contributors \ - | jq -r 'map_values({username: .login, avatar_url: .avatar_url}) \ +github.contributors.%: + curl -sS https://api.github.com/repos/supabase/$*/contributors \ + | jq -r 'map_values({ username: .login }) \ | unique \ | sort_by(.username)' \ - > $(REPO_DIR)/web/src/data/contributors/contributors.json + > $(REPO_DIR)/web/src/data/contributors/$*.json + +.PHONY: github.rcontributorsepos +github.contributors: \ + github.contributors.supabase \ + github.contributors.supabase-js \ + github.contributors.supabase-py \ + github.contributors.supabase-flutter \ + github.contributors.supabase-dart github.issues: curl -sS https://api.github.com/repos/supabase/supabase/issues \