Skip to content

Latest commit

 

History

History
144 lines (142 loc) · 6.1 KB

CONTRIBUTORS.md

File metadata and controls

144 lines (142 loc) · 6.1 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