0.0.1 • Published 9 years ago

gitlab-ci-webhook v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
9 years ago

gitlab-ci-webhook

An express router to handle Gitlab CI build exents

Usage

var express = require('express');
var bodyParser = require('body-parser');
var webhook = require('gitlab-webhook');
var app = express();

app.use(bodyParser.json());
app.use(webhook({
	"url" : "/test",
	"script" : "./test.sh",
	"branches" : "master"
}));
[...]

This module will automatically call the specified script or command whenever the app reveives a build event.