github v0.11.0 Github.Pulls View Source

Pull Requests.

Link to this section Summary

Link to this section Functions

Link to this function list!(github_client, options) View Source

List pull requests

Example

iex> client = %Github.Client{access_token: "access_token"}

iex> client |> Github.Pulls.list!(repo_path: "WorkflowCI/github", state: "open", per_page: 30, page: 1)
%Github.Client.Response{
  body: [%{"number" => 10, ...}],
  status: 200,
  ...
}