0.1.8 • Published 3 years ago

egg-gitlab-webhook v0.1.8

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

🥚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);
    }
  };
}
0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago