/openwhisk-slack

Write actions that interact with Slack using https://github.com/slackapi/node-slack-sdk

Primary LanguageJavaScriptApache License 2.0Apache-2.0

OpenWhisk Action for Slack

This is a sample OpenWhisk project showing how to write actions that interact with Slack using node-slack-sdk.

Building

$ npm install

This command installs the node modules and generates the source code for the action at slack-action-0.0.1.js.

The ES6 code for the action is found in src/action/slack-action.js and the other files are bundled with the code of the action.

The bundle eventually exposes the main variable/function in order for OpenWhisk to invoke the action correctly:

var main = require('main-action');

Running the tests locally

$ npm test

Running the action in OpenWhisk

First make sure you have an Incoming WebHook URL for a Slack Channel.

Then create the action:

$ wsk -i action create slack-action ./slack-action-0.0.1.js --param slack_webhook_url https://hooks.slack.com/services/T000000/B00000000/V000000000

ok: created action slack-action

Then invoke the action:

$ wsk -i action invoke slack-action --blocking

To delete the action:

$ wsk -i action delete slack-action
  
 ok: deleted action slack-action

Deploying it as a ZIP action

In order to make the size of the action smaller, the resulting js file can be ziped and deployed as a ZIP action.

$ cp ./slack-action-0.0.1.js index.js

$ zip slack-action-0.0.1.zip index.js 
#  adding: index.js (deflated 79%)

$ wsk action update slack-action ./slack-action-0.0.1.zip --kind nodejs:6 --param slack_webhook_url https://hooks.slack.com/services/T000000/B00000000/V000000000

 ok: updated action slack-action

Then invoke the action:

$ wsk -i action invoke slack-action --blocking

To delete the action:

$ wsk -i action delete slack-action
  
 ok: deleted action slack-action