This is a sample OpenWhisk project showing how to write actions that interact with Slack using node-slack-sdk.
$ 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');
$ npm test
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
In order to make the size of the action smaller, the resulting js
file can be zip
ed 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