aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/generate-code-contributors.sh
blob: 9c2541cc2c83873a97dc21a4e3b5726c984725a8 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

set -eu

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'