class Github::Client::Repos::Releases

def edit(*args)

Other tags:
    Api: - public

Parameters:
  • params (Hash) --
  • :id (Integer) --
  • :repo (String) --
  • :owner (String) --

Other tags:
    See: https://developer.github.com/v3/repos/releases/#edit-a-release -
def edit(*args)
  arguments(args, required: [:owner, :repo, :id])
  patch_request("/repos/#{arguments.owner}/#{arguments.repo}/releases/#{arguments.id}", arguments.params)
end