class Github::Issues

def create_issue(user_name=nil, repo_name=nil, params={})


]
"Label2"
"Label1",
"labels" => [
"milestone" => 1,
"assignee" => "octocat",
"body" => "I'm having a problem with this.",
"title" => "Found a bug",
@github.issues.create_issue
@github = Github.new :user => 'user-name', :repo => 'repo-name'
= Examples
:labels - Optional array of strings - Labels to associate with this issue
:milestone - Optional number - Milestone to associate this issue with
:assignee - Optional string - Login for the user that this issue should be assigned to.
:body - Optional string
:title - Required string
= Inputs

Create an issue
def create_issue(user_name=nil, repo_name=nil, params={})
  _update_user_repo_params(user_name, repo_name)
  _validate_user_repo_params(user, repo) unless user? && repo?
  _normalize_params_keys(params)
  # _merge_mime_type(:issue, params)
  _filter_params_keys(VALID_ISSUE_PARAM_NAMES, params)
  _validate_inputs(%w[ title ], params)
  post("/repos/#{user}/#{repo}/issues", params)
end