get_issues: Get issues from GitHub repository

View source: R/get.R

get_issuesR Documentation

Get issues from GitHub repository

Description

A single issue can be obtained by identification number of number is passed through ...s. In this case, all other query parameters will be ignored.

Usage

get_issues(ref, limit = 1000, ...)

Arguments

ref

Repository reference (list) created by create_repo_ref()

limit

Number of records to return, passed directly to gh documentation. Defaults to 1000 and provides message if number of records returned equals the limit

...

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

Value

Content of GET request as list

See Also

Other issues: get_issue_comments(), get_issue_events(), parse_issue_comments(), parse_issue_events(), parse_issues(), post_issue_update(), post_issue(), report_discussion(), report_progress(), viz_waterfall()

Examples

## Not run: 
myrepo <- create_repo_ref('emilyriederer', 'myrepo')
issues_res <- get_issues(myrepo)
issues <- parse_issues(issues_res)

## End(Not run)

emilyriederer/projmgr documentation built on Jan. 26, 2024, 3:09 a.m.