Update dashboard on GitHub
update_dashboard.RdConvenience function to add, commit, and push changes to GitHub. Works from the current working directory.
Examples
if (FALSE) { # \dontrun{
# Update all changes (will ask for confirmation)
update_dashboard()
# Update with custom message
update_dashboard(message = "Fix navbar styling")
# Update specific files
update_dashboard(files = c("docs/index.html", "docs/styles.css"))
# Skip confirmation prompt
update_dashboard(ask = FALSE)
} # }