Web Hooks - execute only for specified branches
Created by: Nugs
At present web hooks are global and operate on a per commit policy to the repository.
Where you're hooked up to a CI environment (eg Jenkins) which builds a specific branch you don't want the web hook to be fired for commits to branches that won't affect the configured branch.
A possible implementation would be via regular expression matching - a second (optional) field alongside the web hook url which would match against the branch of every commit and only if matched (or not present) would the web hook fire.