Nothing
#' Add a Website badge
#'
#' @description
#' This function adds a **Website** badge to the `README.Rmd`. This function
#' must be run after [add_github_actions_pkgdown()] which will setup
#' GitHub Actions to build and deploy the package website.
#'
#' Make sure that 1) a `README.Rmd` file exists at the project root and 2) it
#' contains a block starting with the line `<!-- badges: start -->` and ending
#' with the line `<!-- badges: end -->`.
#'
#' Don't forget to re-render the `README.md`.
#'
#' @param organisation A character of length 1. The name of the GitHub
#' organisation to host the package. If `NULL` (default) the GitHub account
#' will be used.
#'
#' @param quiet A logical value. If `TRUE` messages are deleted. Default is
#' `FALSE`.
#'
#' @return A badge as a markdown expression.
#'
#' @export
#'
#' @family adding badges
#'
#' @examples
#' \dontrun{
#' add_github_actions_pkgdown_badge()
#' }
add_github_actions_pkgdown_badge <- function(organisation = NULL,
quiet = FALSE) {
stop_if_not_logical(quiet)
## Check if GH Actions are set ----
if (!file.exists(file.path(path_proj(), ".github", "workflows",
"pkgdown.yaml"))) {
stop("Please run `add_github_actions_pkgdown()` to setup GitHub Actions.")
}
## Retrieve GitHub pseudo/organization ----
if (!is.null(organisation)) {
github <- organisation
} else {
github <- gh::gh_whoami()$"login"
if (is.null(github)) {
stop("Unable to find GitHub username. Please run ",
"`?gert::git_config_global` for more information.")
}
}
stop_if_not_string(github)
## Check URL ----
is_gh_user()
project_name <- get_package_name()
## Create Badge Markdown Expression ----
alt <- "Website"
href <- paste("https://github.com", github, project_name,
"actions/workflows/pkgdown.yaml", sep = "/")
img <- paste("https://github.com", github, project_name,
"actions/workflows/pkgdown.yaml/badge.svg", sep = "/")
badge <- paste0("[![", alt, "](", img, ")](", href, ")")
## Add Badge ----
add_badge(badge, pattern = alt)
if (!quiet) {
ui_done(paste0("Adding {ui_field('Website deployment')} badge to ",
"{ui_value('README.Rmd')}"))
}
invisible(badge)
}
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.