class Github::Repos::Hooks
def create(user_name, repo_name, params={})
}
}
"url" => "http://something.com/webhook"
"config" => {
"active" => true,
"name" => "web",
github.repos.hooks.create 'user-name', 'repo-name',
github = Github.new
= Examples
* :active - Optional boolean - Determines whether the hook is actually triggered on pushes.
* :events - Optional array - Determines what events the hook is triggered for. Default: ["push"]
* :config - Required hash - A Hash containing key/value pairs to provide settings for this hook.
* :name - Required string - the name of the service that is being called.
= Inputs
Create a hook
def create(user_name, repo_name, params={}) set :user => user_name, :repo => repo_name assert_presence_of user, repo normalize! params filter! VALID_HOOK_PARAM_NAMES, params, :recursive => false assert_required_keys(REQUIRED_PARAMS, params) post_request("/repos/#{user}/#{repo}/hooks", params) end