1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/CONTRIBUTORS.md
Julian dc71194e39 Fix: Tutorial config-based invalid keywords #20071 (#20078)
* Update 5-incremental-reads.md in response of Issue #20047

Added the suggested solution from issuer.

* Updated 5-incremental-reads.md #2

Appended the suggested +00:00 into another occurence. Datetime format now corresponds to standards defined in ISO-8601.

* Fix: Low Code Connector tutorial yaml #20071
2022-12-08 14:33:18 -03: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