module Github::Repos::Commits

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


@github.repos.create_comment(...)
@github = Github.new
= Examples

Creates a commit comment
def create_comment(user_name=nil, repo_name=nil, params={})
  raise ArgumentError, "Expected following inputs to the method: #{REQUIRED_COMMENT_PARAMS.join(', ')}" unless _validate_inputs(REQUIRED_COMMENT_PARAMS, inputs)
  post("/repos/#{user}/#{repo}/commits/#{sha}/comments", inputs)
end