Nothing
#' Setup GitHub Actions to document package
#'
#' @description
#' This function creates a configuration file (`.yaml`) to setup GitHub Actions
#' to document the package and update the `Rd` files in the `man/`, the
#' `NAMESPACE` and `DESCRIPTION` files.
#' This workflow is derived
#' from \url{https://github.com/r-lib/actions/tree/v2-branch/examples}.
#' This file will be written as `.github/workflows/document-package.yaml`.
#'
#' @param open A logical value. If `TRUE` (default) the file is opened in the
#' editor.
#'
#' @param overwrite A logical value. If this file is already present and
#' `overwrite = TRUE`, it will be erased and replaced. Default is `FALSE`.
#'
#' @param quiet A logical value. If `TRUE` messages are deleted. Default is
#' `FALSE`.
#'
#' @return No return value.
#'
#' @export
#'
#' @family development functions
#'
#' @examples
#' \dontrun{
#' add_github_actions_document()
#' }
add_github_actions_document <- function(open = FALSE, overwrite = FALSE,
quiet = FALSE) {
stop_if_not_logical(open, overwrite, quiet)
if (!dir.exists(file.path(path_proj(), ".git"))) {
stop("The project is not versioning with git.")
}
path <- file.path(path_proj(), ".github", "workflows",
"document-package.yaml")
## Do not replace current file but open it if required ----
if (file.exists(path) && !overwrite) {
if (!open) {
stop("An '.github/workflows/document-package.yaml' file is already ",
"present. If you want to replace it, please use `overwrite = TRUE`.")
} else {
edit_file(path)
return(invisible(NULL))
}
}
## Copy Template ----
dir.create(file.path(path_proj(), ".github", "workflows"),
showWarnings = FALSE, recursive = TRUE)
add_to_buildignore(".github", quiet = FALSE)
invisible(
file.copy(system.file(file.path("templates", "document-package.yaml"),
package = "rcompendium"), path))
if (!quiet) {
ui_done(paste0("Writing ",
"{ui_value('.github/workflows/document-package.yaml')} ",
"file"))
}
if (open) edit_file(path)
invisible(NULL)
}
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.