PeerTube/scripts/generate-code-contributors.sh

8 lines
200 B
Bash
Raw Normal View History

2018-03-27 10:35:12 +02:00
#!/bin/sh
set -eu
2018-02-15 19:33:20 +01:00
curl -s https://api.github.com/repos/chocobozzz/peertube/contributors | \
2018-04-23 14:50:00 +02:00
jq -r 'map(" * [" + .login + "](" + .url + ")") | .[]' | \
sed 's/api.github.com\/users/github.com/g'