MeltanoLabs / tap-gitlab

Singer.io Tap for extracting data from Gitlab's API
GNU Affero General Public License v3.0
8 stars 25 forks source link

Enumerate all Projects under a Group by using non-deprecated API #56

Closed pnadolny13 closed 2 years ago

pnadolny13 commented 2 years ago

In GitLab by @aaronsteers on Aug 9, 2021, 12:30

As described in: https://gitlab.com/meltano/tap-gitlab/-/merge_requests/39

pnadolny13 commented 2 years ago

In GitLab by @tayloramurphy on Sep 13, 2021, 11:26

marked this issue as related to hub#99

pnadolny13 commented 2 years ago

In GitLab by @tayloramurphy on Sep 13, 2021, 11:30

assigned to @tayloramurphy

pnadolny13 commented 2 years ago

In GitLab by @tayloramurphy on Sep 27, 2021, 16:27

unassigned @tayloramurphy

ninomllr commented 2 years ago

Just for those that need a workaround until this is possible, I creaded this bash command for it: curl -s "https://gitlab_instance/api/v4/groups?private_token=$TAP_GITLAB_PRIVATE_TOKEN&per_page=100" | jq -r '.[] | .full_path' | tr '\r\n' ' '

pnadolny13 commented 2 years ago

@ninomllr this was actually resolved in the gitlab repo prior to mirroring to github. I opened a PR with commits that didnt get migrated https://github.com/MeltanoLabs/tap-gitlab/pull/62

pnadolny13 commented 2 years ago

I merged those commits so I'm going to close this issue!