Skip to content

Latest commit

 

History

History
428 lines (426 loc) · 18.9 KB

CONTRIBUTORS.md

File metadata and controls

428 lines (426 loc) · 18.9 KB

Contributors

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