Nothing
github_api_issue_comment = function(repo, number, body) {
arg_is_chr_scalar(repo, body)
ghclass_api_v3_req(
endpoint = "POST /repos/:owner/:repo/issues/:issue_number/comments",
owner = get_repo_owner(repo),
repo = get_repo_name(repo),
issue_number = number,
body = body
)
}
#' @rdname issue
#'
#' @param comment Character. Optional comment to post on the issue before
#' closing it. If posting the comment fails the issue is not closed. Recycled
#' against `repo` / `number`.
#'
#' @export
#'
issue_close = function(repo, number, comment = NULL) {
arg_is_chr(repo)
arg_is_chr(comment, allow_null = TRUE)
arg_is_pos_int(number)
if (is.null(comment))
comment = list(NULL)
res = purrr::pmap(
tibble::tibble(repo, number, comment),
function(repo, number, comment) {
num_text = paste0("#", number)
if (!is.null(comment)) {
comment_res = purrr::safely(github_api_issue_comment)(
repo, number, comment
)
status_msg(
comment_res,
"Commented on issue {.val {num_text}} for repo {.val {repo}}.",
"Failed to comment on issue {.val {num_text}} for repo {.val {repo}}."
)
if (failed(comment_res))
return(comment_res)
}
close_res = purrr::safely(github_api_issue_edit)(
repo, number, state = "closed"
)
status_msg(
close_res,
"Closed issue {.val {num_text}} for repo {.val {repo}}.",
"Failed to close issue {.val {num_text}} for repo {.val {repo}}."
)
close_res
}
)
invisible(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.