1
0
mirror of synced 2025-12-19 10:00:34 -05:00
Files
airbyte/CONTRIBUTORS.md
2024-05-07 08:19:33 -07:00

19 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