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 7c9bccc commit 79705b9Copy full SHA for 79705b9
R/check_changes_for_autoapproval.R
@@ -25,7 +25,9 @@ check_changes_for_autoapproval <- function(
25
checkmate::assert_string(base_hub_path)
26
checkmate::assert_character(changed_files)
27
if (length(changed_files) < 1) {
28
- cli::cli_abort("Empty PRs cannot be autoapproved. At least one file must be changed in the pull request.")
+ cli::cli_abort(
29
+ "Empty PRs cannot be autoapproved. At least one file must be changed in the pull request."
30
+ )
31
}
32
changed_files_tbl <- tibble::tibble(
33
full_path = changed_files
0 commit comments