1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
#' Deprecated Git functions
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `git_branch_default()` has been replaced by [git_default_branch()].
#'
#' @keywords internal
#' @export
git_branch_default <- function() {
lifecycle::deprecate_warn("2.1.0", "git_branch_default()", "git_default_branch()")
git_default_branch()
}
#' Deprecated badge function
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `use_rscloud_badge()` has been replaced by [use_posit_cloud_badge()].
#'
#' @keywords internal
#' @export
use_rscloud_badge <- function(url) {
lifecycle::deprecate_stop(
"2.2.0", "use_rscloud_badge()",
"use_posit_cloud_badge()"
)
}
#' Deprecated tidyverse functions
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' * `use_tidy_eval()` is deprecated because there's no longer a need to
#' systematically import and re-export a large number of functions in order
#' to use tidy evaluation. Instead, use [use_import_from()] to tactically
#' import functions as you need them.
#' @keywords internal
#' @export
use_tidy_eval <- function() {
lifecycle::deprecate_stop(
"2.2.0",
"use_tidy_eval()",
details = c(
"There is no longer a need to systematically import and/or re-export functions",
"Instead import functions as needed, with e.g.:",
'usethis::use_import_from("rlang", c(".data", ".env"))'
)
)
}
# GitHub actions --------------------------------------------------------------
#' Deprecated GitHub Actions functions
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' * `use_github_actions()` is deprecated because it was just an alias
#' for [use_github_action_check_release()].
#'
#' * `use_github_action_check_full()` is overkill for most packages and is
#' not recommended.
#'
#' * `use_github_action_check_release()`, `use_github_action_check_standard()`,
#' and `use_github_action_pr_commands()` are deprecated in favor of
#' [use_github_action()], which can now suggest specific workflows to use.
#'
#' @export
#' @keywords internal
use_github_actions <- function() {
lifecycle::deprecate_warn(
when = "2.2.0",
what = "use_github_actions()",
with = "use_github_action('check-release')"
)
use_github_action('check-release')
}
#' @rdname use_github_actions
#' @export
use_github_action_check_release <- function(save_as = "R-CMD-check.yaml",
ref = NULL,
ignore = TRUE,
open = FALSE) {
lifecycle::deprecate_warn(
when = "2.2.0",
what = "use_github_action_check_release()",
with = "use_github_action('check-release')"
)
use_github_action(
"check-release.yaml",
ref = ref,
save_as = save_as,
ignore = ignore,
open = open
)
use_github_actions_badge(save_as)
}
#' @rdname use_github_actions
#' @export
use_github_action_check_standard <- function(save_as = "R-CMD-check.yaml",
ref = NULL,
ignore = TRUE,
open = FALSE) {
lifecycle::deprecate_warn(
when = "2.2.0",
what = "use_github_action_check_standard()",
with = "use_github_action('check-standard')"
)
use_github_action(
"check-standard.yaml",
ref = ref,
save_as = save_as,
ignore = ignore,
open = open
)
use_github_actions_badge(save_as)
}
#' @rdname use_github_actions
#' @export
use_github_action_pr_commands <- function(save_as = "pr-commands.yaml",
ref = NULL,
ignore = TRUE,
open = FALSE) {
lifecycle::deprecate_warn(
when = "2.2.0",
what = "use_github_action_pr_commands()",
with = "use_github_action('pr-commands')"
)
use_github_action(
"pr-commands.yaml",
ref = ref,
save_as = save_as,
ignore = ignore,
open = open
)
}
#' @rdname use_github_actions
#' @export
use_github_action_check_full <- function(save_as = "R-CMD-check.yaml",
ignore = TRUE,
open = FALSE,
repo_spec = NULL) {
details <- glue("
It is overkill for the vast majority of R packages.
The \"check-full\" workflow is among those configured by \\
`use_tidy_github_actions()`.
If you really want it, request it by name with `use_github_action()`.")
lifecycle::deprecate_stop(
"2.1.0",
"use_github_action_check_full()",
details = details
)
}
|