You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 5, 2021. It is now read-only.
if one is tracking user-repositories (i.e. not under an org), for example: ry/v8worker, then many parts of the code break.
The code eventually goes into an infinite loop of API accesses like this: ry GitHub client error, pushing command back on queue: GET https://api.github.com/orgs/ry/repos?per_page=100: 404 - Not Found // See: https://developer.github.com/v3/repos/#list-organization-repositories
The text was updated successfully, but these errors were encountered:
A) Change the code so that it's able to tell if 'xyzzy' is a login or an organization.
B) Add a login-repositories: configuration option.
The problem with A is that it requires a call to GitHub, and that I don't think there is an ideal query so it's relying on a side-effect (for example trying to get organization repositories and seeing it error).
if one is tracking user-repositories (i.e. not under an org), for example:
ry/v8worker
, then many parts of the code break.The code eventually goes into an infinite loop of API accesses like this:
ry GitHub client error, pushing command back on queue: GET https://api.github.com/orgs/ry/repos?per_page=100: 404 - Not Found // See: https://developer.github.com/v3/repos/#list-organization-repositories
The text was updated successfully, but these errors were encountered: