@dgsh/processus-handler-slack
v2.0.0
Published
Slack handler for Processus
Downloads
18
Readme
Processus Slack Message Handler
A Processus handler for sending messages to Slack via its Incoming WebHook add-on
Using the Processus handler for Slack is relatively simple. Choose one of the installation options below and then invoke from your project using the API or from the command line (example below).
Make sure you have the an Incoming Webhook configured for your Slack team and you know the URL.
See https://api.slack.com/incoming-webhooks for more information.
Compatibility
Ensure that at least your major version of @dgsh/processus-handler-slack
matches the versions for @dgsh/processus
.
Example
npm install --save @dgsh/[email protected]
npm install --save @dgsh/[email protected]
npm install --save @dgsh/[email protected]
npm install --save @dgsh/[email protected]
Installation
If you haven't already, install Processus
npm install --save @dgsh/[email protected]
Install this handler
npm install --save @dgsh/[email protected]
Testing the Example
Set up an incoming webhook integration in your Slack team as mentioned in https://api.slack.com/incoming-webhooks and make a note of the webhookURL and channel you wish to use.
Configure the example
Update the [webhookURL]
and [#channel or @user]
according to your slack team.
---
name: "Demo Slack"
description: "A demo showing the use of the slack handler to make a incoming webhook call."
tasks:
Send a message to Slack's incoming WebHook.:
blocking: true
handler: "processus-handler-slack"
properties:
webhookURL: "[webhookURL]"
payload:
username: "processus"
channel: "[#channel or @user]"
text: "Hi from Processus https://github.com/cloudb2/processus-handler-slack\n\nMessage sent from workflow $[id]"
icon_url: "https://slack.com/img/icons/app-57.png"
unfurl_links: true
Example Usage from CLI
./node_modules/.bin/processus -l info -f example.yml
You should see something similar to the following on the command line
info: Reading workflow file [example.yml]
info: Starting task [Send a message to Slack's incoming WebHook.]
info: Workflow [example.yml] with id [f1ed1989-2d36-473d-b0b6-ce5fad3b897c] completed successfully.
In your slack team and channel you should a message.
See the Slack Incoming Webhooks for more details on how this can be used.