Skip to contents

Obtains repositories that belong to an organization according to different levels.

Usage

get_org_repos_list(
  org,
  type = c("all", "public", "private", "forks", "sources", "member")
)

Arguments

org

Name of the organization

type

The kind of repository to list. Can be one of: `"all"`, `"public"`, `"private"`, `"forks"`, `"sources"`, `"member"`. Default: `"all"`

References

<https://developer.github.com/v3/repos/#list-organization-repositories>

See also

[`get_self_repos_list`], [`get_user_repos_list`]

Examples

if (FALSE) {
get_org_repos_list("stat385uiuc", "all")
}