From 1bbfd5e152de33a5968e66a9058434f2cd6f8750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20L=2E=20Hansen?= Date: Wed, 31 Aug 2022 22:54:04 -0700 Subject: [PATCH] Add make target to add contributors --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 28b7fcf..7ede402 100644 --- a/Makefile +++ b/Makefile @@ -79,3 +79,7 @@ release: clean: rm -fr gotty builds js/dist bindata/static js/node_modules + +addcontributors: + gh issue list -s all -L 1000 --json author -t "$$(echo '{{ range . }}{{ .author.login }}\n{{ end }}')" | sort | uniq | xargs -Ifoo all-contributors add foo bug + gh pr list -s all -L 1000 --json author -t "$$(echo '{{ range . }}{{ .author.login }}\n{{ end }}')" | sort | uniq | xargs -Ifoo all-contributors add foo code \ No newline at end of file