aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/generate-code-contributors.sh
blob: 2201377aec46a4665df6fe4950d366731174d31d (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(" * [" + .login + "](" + .url + ")") | .[]' | \
  sed 's/api.github.com\/users/github.com/g'