node-gitlab-hook icon indicating copy to clipboard operation
node-gitlab-hook copied to clipboard

This is a very simple, easy to use web hook for GitLab.

Results 5 node-gitlab-hook issues
Sort by recently updated
recently updated
newest added

Add Support for http-header "x-gitlab-token" to increase security of the webhook

Hey there! Is it possible to say: "Only when the master branch got changed, do the scripts."? Because now it always does the scripts but I only want it when...

Anyway this could be updated to support working with the user created system hook?

I'm running this on Windows using iisnode (https://github.com/tjanczuk/iisnode) ``` var gitlabhook = require('gitlabhook'); var gitlab = gitlabhook({ host: 'localhost', port: process.env.PORT}, function(){ console.log('Webhook received'); }); gitlab.listen(); ``` This is the...