You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use Github Webhooks API to create a repository hook (https://developer.github.com/v3/repos/hooks/)
POST /repos/:owner/:repo/hooks
config = {url: [url to to which webhooks will be delivered(will need IP address of computer), content-type: json, secret: (X-hub signature), insecure_ssl: 0 };
params = {name: web, config, events: ["pull_request"], active: true}