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 \