CONTRIBUTORS.md
p=1;
while true; do
s=$(curl "https://api.github.com/repos/airbytehq/airbyte/contributors?page=$p") || break
[ "0" = $(echo $s | jq length) ] && break
echo $s | jq -r '.[] | "* [" + .login + "](" + .html_url + ")"'
p=$((p+1))
done | sort -f