View source: R/wrangling_dataset_issues.R
| format_issues | R Documentation |
Format the issue in a simpler format
format_issues(raw_issues, raw_comments, verbose = TRUE)
raw_issues |
a |
raw_comments |
a |
verbose |
A logical value indicating whether to print additional
information. Default is |
a list representing an issue with simpler structure (with number, title, body and labels) of all issues.
## Not run:
raw_issues <- gh::gh(
repo = "rjdemetra",
owner = "rjdverse",
endpoint = "/repos/:owner/:repo/issues",
.limit = Inf,
.progress = FALSE
)
raw_comments <- gh::gh(
repo = "rjdemetra",
owner = "rjdverse",
endpoint = "/repos/:owner/:repo/issues/comments",
.limit = Inf,
.progress = FALSE
)
all_issues <- format_issues(raw_issues = raw_issues,
raw_comments = raw_comments,
verbose = FALSE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.