class Github::Issues::Labels
def update(*args)
name: 'API', color: "FFFFFF"
github.issues.labels.update 'user-name', 'repo-name', 'label-name',
github = Github.new
= Examples
:color - Required string-6 character hex code, without leading #
:name - Required string
= Inputs
Update a label
def update(*args) arguments(args, :required => [:user, :repo, :label_name]) do sift VALID_LABEL_INPUTS assert_required VALID_LABEL_INPUTS end patch_request("/repos/#{user}/#{repo}/labels/#{label_name}", arguments.params) end