github v0.13.0-rc1 Github.Issues.Comments View Source

Issues Comments.

Link to this section Summary

Link to this section Functions

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

Create a comment

Example

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

iex> client |> Github.Issues.Comments.create!(
  repo_path: "WorkflowCI/github",
  issue_number: 1,
  body: "hello world"
)
%Github.Client.Response{
  body: %{"url" => "https://api.github.com/repos/WorkflowCI/github/issues/comments/449685608", ...},
  status: 201,
  ...
}