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
While we are trying with 32-bit bundle of this actions-sync tool,
it fails in fetching the organization.
Customer facing errors:
error creating github repository actions/setup-node: error creating organization actions: POST https://example.com/api/v3/admin/organizations: 422 Organization name is not available []
Internal details when run with extra logs locally:
While fetching the organization, we get the plan
org.plan.private_repos: 999999999999,
and it exceeds 32 bit INT (2147483647). So fails during unmarshal with below error. json: cannot unmarshal number 999999999999 into Go struct field Plan.plan.private_repos of type int
If we try with 64 bit bundle (gh_202009231612_linux_amd64.tar.gz), it's working fine.
The text was updated successfully, but these errors were encountered:
While we are trying with 32-bit bundle of this actions-sync tool,
it fails in fetching the organization.
Customer facing errors:
error creating github repository
actions/setup-node
: error creating organization actions: POST https://example.com/api/v3/admin/organizations: 422 Organization name is not available []error creating github repository
synced-actions/setup-ruby
: error creating organization synced-actions: POST https://example.com/api/v3/admin/organizations: 404 Not Found []Internal details when run with extra logs locally:
While fetching the organization, we get the plan
and it exceeds 32 bit INT (2147483647). So fails during unmarshal with below error.
json: cannot unmarshal number 999999999999 into Go struct field Plan.plan.private_repos of type int
If we try with 64 bit bundle (
gh_202009231612_linux_amd64.tar.gz
), it's working fine.The text was updated successfully, but these errors were encountered: