Try to collect all fields with `tap-github`, which...
# plugins-general
j
Try to collect all fields with
tap-github
, which I collected with my custom tooling. config:
Copy code
config:
    plugins:
      extractors:
      - name: tap-github
        select:
        - commits.sha
        - commits.parents
        - commits.html_url
        # Does not work
        - commits.author.name
        - commits.pr_id
        - commits.pr_number
        - commits.stats
      ....
I use
target-jsonl
to debug it. Issues: • The collected JSON does not contain fields below
Does not work
comment above. The similar situation is in the case of pull_requests. E.g. I get
"author": {},
• Don't know how to collect organization users - /orgs/{org}/members • Don't know how to collect repositories - /orgs/{org}/repos