module Github::Repos::Hooks
def create_hook(user_name=nil, repo_name=nil, params={})
}
}
"url" => "http://something.com/webhook"
"config" => {
"active" => true,
"name" => "web",
@github.repos.create_hook '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_hook(user_name=nil, repo_name=nil, params={}) _update_user_repo_params(user_name, repo_name) _validate_user_repo_params(user, repo) unless user? && repo? _normalize_params_keys(params) _filter_params_keys(VALID_HOOK_PARAM_NAMES, params, :recursive => false) _validate_inputs(REQUIRED_PARAMS, params) post("/repos/#{user}/#{repo}/hooks", params) end