get_pull_request_commits.Rd
Gets a data frame of the commits of a pull request
get_pull_request_commits( org, repo, number, pages = NULL, .cc = FALSE, .api_url = api_url() )
org | Name of organization to query |
---|---|
repo | Name of repository to query |
number | Pull Request number |
pages | Number of pages to paginate and pull data from. Each page will contain upto 100 issues/pullrequests. Defaults to NULL for all pages. |
.cc | Parse the commits as conventional commits. Defaults to FALSE. |
.api_url | Optional API url to query. Defaults to the value set by `api_url()`. Usually it's "https://api.github.com/graphql" |
A data frame containing the oid | message | author | date of each commit of a pull request. If .cc = TRUE, the data frame will contain oid | type | description | body | footer | author | date