Nothing
#' @title Get data on organizations
#' @name get_orgs
#' @description Pulls data on all organizations from a Git host and parses it
#' into table format.
#' @param gitstats A GitStats object.
#' @param cache A logical, if set to `TRUE` GitStats will retrieve the last
#' result from its storage.
#' @param verbose A logical, `TRUE` by default. If `FALSE` messages and printing
#' output is switched off.
#' @return A data.frame.
#' @examples
#' \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)
#' }
#' @export
get_orgs <- function(gitstats,
cache = TRUE,
verbose = is_verbose(gitstats)) {
start_time <- Sys.time()
orgs <- gitstats$get_orgs(
cache = cache,
verbose = verbose
)
end_time <- Sys.time()
time_taken <- end_time - start_time
if (verbose) {
cli::cli_alert_success("Data pulled in {round(time_taken, 1)} {attr(time_taken, 'units')}")
}
return(orgs)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.