UNPKG

webhook-github-n-slack

Version:
43 lines (34 loc) 1.3 kB
## Small server to fast run webhook server for GitHub and/or Slack. ###How it works. First: ~~~shell npm i --save webhook-github-n-slack ~~~ ```webhook``` function accept obj as argument with following structure: ~~~js 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.