Description Usage Arguments Value
View source: R/pull_request_commits.R
Gets a data frame of the commits of a pull request
1 2 3 4 5 6 7 8 | 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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.