Skip to content

Instantly share code, notes, and snippets.

@bjhess
Created May 18, 2012 15:58
Show Gist options
  • Star 44 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save bjhess/2726012 to your computer and use it in GitHub Desktop.
Save bjhess/2726012 to your computer and use it in GitHub Desktop.
The way I had to add a github repo webhook for pull requests

This is more complex than necessary.

GitHub webhooks for a URL by default only fire on repo pushes. There appears to be no way in the web UI to set up webhooks for other events. And so we go to the API. I prefer to do this type of thing with Hurl.

{
  "name": "web",
  "active": true,
  "events": ["pull_request"],
  "config": {
    "url": "http://example.com/url/path"
  }
}
  • GET to https://api.github.com/repos/:username/:repo/hooks to check if the webhook you created has the proper event applied.
  • You will see the URL in the admin section of your repo, and you can change it. There will be no mention of what events the URL fires on, but it should stick to pull_request.
  • You can use http://requestb.in/ to test the hook.
@statico
Copy link

statico commented Nov 9, 2013

+1

@steve-jansen
Copy link

FYI - the GitHub dev team announced better Web UI support for web hooks in their Feburary 11th, 2014 post Webhooks level up. Nice work nonetheless making stuff work!

@khurshid-alam
Copy link

Is it possible to set webhook for new pull requests for those repos I do NOT own?

@harisheidiko
Copy link

Nice code,but It's giving 404 error when i am trying to hit through postman

@donald-pinckney
Copy link

@harisheidiko You need to use HTTP authentication for this, otherwise it will 404.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment