class Github::Repos::Releases::Assets

def edit(*args)


"label": "Mac binary"
"name": "foo-1.0.0-osx.zip",
github.repos.releases.assets.edit 'owner', 'repo', 'id',
github = Github.new
= Examples

the asset. Used in place of the filename.
* :label - Optional string - An alternate short description of
* :name - Required string - the filename of the asset
= Inputs

Edit a release asset
def edit(*args)
  arguments(args, required: [:owner, :repo, :id]) do
    sift VALID_ASSET_PARAM_NAMES
  end
  params = arguments.params
  patch_request("/repos/#{owner}/#{repo}/releases/assets/#{id}", params)
end