egg-gitlab-webhook
v0.1.8
Published
🥚Egg plugin for processing gitlab Webhooks.
Downloads
16
Readme
🥚Egg plugin for processing gitlab Webhooks.
Installation
npm install egg-gitlab-webhook
yarn add egg-gitlab-webhook
Usage
// plugin.js
gitlabWebhook: {
enable: true,
package: 'egg-gitlab-webhook',
}
// config.default.js
gitlabWebhook: {
path: '/',
secret: '', // gitlab 秘钥
event: {
// push: './scripts/webhook.js',
push: () => {
},
push: function (event) {
},
}
}
Example
event: {
push: (event) => {
if (event.payload) {
console.log(event.payload);
}
};
}