webhook-github-n-slack

2.1.3 • Public • Published

Small server to fast run webhook server for GitHub and/or Slack.

How it works.

First:

npm i --save webhook-github-n-slack

webhook function accept obj as argument with following structure:

import webhook from 'webhook-github-n-slack';
 
let config = {
    github: {
        autoGitPull: true,
        branch: "master",
        path: '/webhook', //payload URL (http:/domain.com:5254/webhook)
        secret: '**********',
        projectRoot: '/var/www/vhosts/domain.com/httpdocs' //local path to project
    },
    slack: {
        url: 'https://hooks.slack.com/services/******/******/***********', //slack webhook URL
        channel: 'development',
        projectName: 'name'
    },
    port: 5254,
    exec: ['npm run restart', 'NODE_ENV=production webpack'], // pass any shell command/s, it will run after function was execute by event or schedule 
};
 
...
/* your server */ 
...
 
webhook(config);

You can pass only Git, Slack or both configs together. Else if you pass schedule property it will schedule auto run of function each specified days and at specified time, besides webhook, for example to keep project up-to-date and avoid any local changes in project.

If you have any suggestion please leave me a message.

star to be up to date.

Dependents (0)

Package Sidebar

Install

npm i webhook-github-n-slack

Weekly Downloads

5

Version

2.1.3

License

MIT

Last publish

Collaborators

  • sarkistlt