Update code contributors list
authorChocobozzz <me@florianbigard.com>
Thu, 15 Feb 2018 18:33:20 +0000 (19:33 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 15 Feb 2018 18:33:20 +0000 (19:33 +0100)
CREDITS.md
scripts/generate-code-contributors.sh [new file with mode: 0755]

index bfed400d08961653b48c1fb44e9dbb40bfda8a2e..dd195305a7ab45acbb6c3bb2870a46064bf6cac6 100644 (file)
@@ -1,20 +1,33 @@
 # Code
 
- * [Chocobozzz](https://github.com/Chocobozzz)
- * [Green-Star](https://github.com/Green-Star)
- * [bnjbvr](https://github.com/bnjbvr)
- * [dadall](https://github.com/dadall)
- * [dedesite](https://github.com/dedesite)
- * [sticmac](https://github.com/sticmac)
- * [jankeromnes](https://github.com/jankeromnes)
- * [flyingrub](https://github.com/flyingrub)
- * [ReK2Fernandez](https://github.com/ReK2Fernandez)
- * [ALSai](https://github.com/ALSai)
+ * [Chocobozzz](https://github.com/Chocobozzz) 
+ * [Green-Star](https://github.com/Green-Star) 
+ * [jankeromnes](https://github.com/jankeromnes) 
+ * [bnjbvr](https://github.com/bnjbvr) 
+ * [DimitriGilbert](https://github.com/DimitriGilbert) 
+ * [dadall](https://github.com/dadall) 
+ * [dedesite](https://github.com/dedesite) 
+ * [lucaspontoexe](https://github.com/lucaspontoexe) 
+ * [rigelk](https://github.com/rigelk) 
+ * [flyingrub](https://github.com/flyingrub) 
+ * [svnet-libre](https://github.com/svnet-libre) 
+ * [tcitworld](https://github.com/tcitworld) 
+ * [kaiyou](https://github.com/kaiyou) 
+ * [taziden](https://github.com/taziden) 
+ * [sticmac](https://github.com/sticmac) 
+ * [qsypoq](https://github.com/qsypoq) 
+ * [DatBewar](https://github.com/DatBewar) 
+ * [ReK2Fernandez](https://github.com/ReK2Fernandez) 
+ * [fflorent](https://github.com/fflorent) 
+ * [faddat](https://github.com/faddat) 
+ * [ldidry](https://github.com/ldidry) 
+ * [ALSai](https://github.com/ALSai) 
+ * [valvin1](https://github.com/valvin1) 
+ * [FrozenDroid](https://github.com/FrozenDroid) 
+ * [AugierLe42e](https://github.com/AugierLe42e) 
+ * [jonathanraes](https://github.com/jonathanraes) 
+ * [luzpaz](https://github.com/luzpaz) 
  * [ewasion](https://github.com/ewasion)
- * [qsypoq](https://github.com/qsypoq)
- * [ldidry](https://github.com/ldidry)
- * [faddat](https://github.com/faddat)
- * [AugierLe42e](https://github.com/AugierLe42e)
 
 # Design
 
diff --git a/scripts/generate-code-contributors.sh b/scripts/generate-code-contributors.sh
new file mode 100755 (executable)
index 0000000..eb94d41
--- /dev/null
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
+  jq -r 'map("\\\n * [" + .login + "](" + .url + ")") | .[]' | \
+  xargs echo | sed 's/api.github.com\/users/github.com/g'