We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b6322b commit 96bc1c5Copy full SHA for 96bc1c5
R/check_changes_for_autoapproval.R
@@ -23,10 +23,10 @@ check_changes_for_autoapproval <- function(
23
) {
24
checkmate::assert_string(gh_actor)
25
checkmate::assert_string(base_hub_path)
26
+ checkmate::assert_character(changed_files)
27
if (length(changed_files) == 0) {
28
cli::cli_abort("Empty PRs cannot be autoapproved.")
29
}
- checkmate::assert_character(changed_files)
30
31
# tibble of changed files with paths
32
changed_files_tbl <- tibble::tibble(
0 commit comments