Download (non-pull-request) issues in a repository and parse them into a tidy
tibble::tibble().
Usage
FetchRepoIssues(
strOwner = gh::gh_tree_remote()[["username"]],
strRepo = gh::gh_tree_remote()[["repo"]],
strGHToken = gh::gh_token()
)Value
A qcthat_Issues object, which is a tibble::tibble() with
columns:
Issue: Issue number.Title: Issue title.Body: Issue body (the full text of the issue).Labels: List column of character vectors of issue labels.State: Issue state (openorclosed).StateReason: Reason for issue state (e.g.,completed) orNAif not applicable.Milestone: Issue milestone title orNAif not applicable.Type: Issue type or"Issue"if no issue type is available.Url: URL of the issue on GitHub.ParentOwner: GitHub username or organization name of the parent issue if applicable, otherwiseNA.ParentRepo: GitHub repository name of the parent issue if applicable, otherwiseNA.ParentNumber: GitHub issue number of the parent issue if applicable, otherwiseNA.CreatedAt:POSIXcttimestamp of when the issue was created.ClosedAt:POSIXcttimestamp of when the issue was closed, orNAif the issue is still open.