View source: R/gitstats_functions.R
get_storage | R Documentation |
GitStats
storageRetrieves whole or particular data (see storage
parameter)
pulled earlier with GitStats
.
get_storage(gitstats, storage = NULL)
gitstats |
A GitStats object. |
storage |
A character, type of the data you want to get from storage:
|
A list of tibbles (if storage
set to NULL
) or a tibble (if
storage
defined).
## Not run:
my_gitstats <- create_gitstats() %>%
set_github_host(
token = Sys.getenv("GITHUB_PAT"),
orgs = c("r-world-devs", "openpharma")
)
get_release_logs(my_gistats, since = "2024-01-01")
get_repos(my_gitstats)
release_logs <- get_storage(
gitstats = my_gitstats,
storage = "release_logs"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.