Pulls data on all organizations from a Git host and parses it into table format.
Usage
get_orgs(gitstats, cache = TRUE, verbose = is_verbose(gitstats))
Examples
if (FALSE) { # \dontrun{
my_gitstats <- create_gitstats() |>
set_github_host(
orgs = c("r-world-devs", "openpharma"),
token = Sys.getenv("GITHUB_PAT")
) |>
set_gitlab_host(
orgs = "mbtests",
token = Sys.getenv("GITLAB_PAT_PUBLIC")
)
get_orgs(my_gitstats)
} # }