1
0
mirror of synced 2025-12-19 18:14:56 -05:00
Files
airbyte/CONTRIBUTORS.md
2021-09-27 10:45:50 -07:00

6.1 KiB

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