| add_github_actions_render {rcompendium} | R Documentation |
Setup GitHub Actions to render README
Description
This function creates a configuration file (.yaml) to setup GitHub Actions
to automatically knit the README.Rmd after a push. This workflow will be
triggered only if the README.Rmd has been modified since the last commit.
This workflow is derived
from https://github.com/r-lib/actions/tree/v2-branch/examples.
This file will be written as .github/workflows/render-README.yaml.
Usage
add_github_actions_render(open = FALSE, overwrite = FALSE, quiet = FALSE)
Arguments
open |
A logical value. If |
overwrite |
A logical value. If this file is already present and
|
quiet |
A logical value. If |
Value
No return value.
See Also
Other development functions:
add_dependencies(),
add_github_actions_check(),
add_github_actions_citation(),
add_github_actions_codecov(),
add_github_actions_document(),
add_github_actions_pkgdown(),
add_r_depend(),
add_to_buildignore(),
add_to_gitignore()
Examples
## Not run:
add_github_actions_render()
## End(Not run)