In addition to information returned by GitHub API, appends field "number" for the issue number to which the returned comments correspond.

get_issue_comments(ref, number, ...)

Arguments

ref

Repository reference (list) created by create_repo_ref()

number

Number of issue

...

Additional user-defined query parameters. Use browse_docs() to learn more.

Value

Content of GET request as list

See also

Examples

if (FALSE) { myrepo <- create_repo_ref('emilyriederer', 'myrepo') comments_res <- get_issue_comments(myrepo, number = 1) comments <- parse_issue_comments(comments_res) }