We're going to need to break some behavior in rgithub to fix this, but there's inconsistencies across the API. Some call use ellipsis for the body of a request, like create.repository:
create.repository <- function (..., ctx = get.github.context())
.api.post.request(ctx, c("user", "repos"), body = list(...))
We're going to need to break some behavior in
rgithub
to fix this, but there's inconsistencies across the API. Some call use ellipsis for the body of a request, likecreate.repository
:But some calls use a
content
parameter:We should pick one of these and go with it.