class Github::Repos::Watching
def unwatch(user_name, repo_name, params={})
github.repos.watching.unwatch 'user-name', 'repo-name'
github = Github.new
= Examples
You need to be authenticated to stop watching a repository.
Stop watching a repository
def unwatch(user_name, repo_name, params={}) _validate_presence_of user_name, repo_name normalize! params delete_request("/user/subscriptions/#{user_name}/#{repo_name}", params) end