This sample automation uses workflows to simplify the process of incident management, featuring the integration of external tools like Jira and Zoom.
Guide Outline:
- Included Workflows
- Setup
- Creating Triggers
- Datastores
- Testing
- Deploying Your App
- Viewing Activity Logs
- Project Structure
- Resources
- Create incident: Submit an incident by providing details, determining a severity, and optionally assiging a DRI
- Create incident report: Generate a report that gives statistics of all incidents within a designated incident channel
Before getting started, first make sure you have a development workspace where you have permission to install apps. Please note that the features in this project require that the workspace be part of a Slack paid plan.
To use this sample, you need to install and configure the Slack CLI. Step-by-step instructions can be found in our Quickstart Guide.
Start by cloning this repository:
# Clone this project onto your machine
$ slack create my-app -t slack-samples/deno-incident-management
# Change into the project directory
$ cd my-app
To run this application, access tokens are required in order to make calls to the Atlassian and Zoom APIs.
ZOOM_JWT_TOKEN
can be attained from the
Zoom Developer Site and many of the Atlassian
environment variables can be acquired by signing up for a free
Cloud Developer Bundle
with Atlassian.
Your personal access token allows your application to perform the API calls used by functions as though it was from your Atlassian and Zoom accounts. That means all calls made from the Create Incident workflow will be made using the accounts associated with the personal access tokens in use!
Storing your access token as an environment variable allows you to use different tokens across local and deployed versions of the same app.
-
INCIDENT_CHANNEL
is the channel ID of the designated, public incident channel. This is where the app will post updates about a given incident. -
ZOOM_JWT_TOKEN
is used to make calls to the Zoom API. -
ATLASSIAN_INSTANCE
is your Atlassian instance name. -
ATLASSIAN_USERNAME
is the email from your Jira Cloud Developer account. This is used to create and update Jira issues. -
ATLASSIAN_API_KEY
is used to make calls to the Atlassian API. -
ATLASSIAN_SPACE
is used to create an RCA Confluence page. -
JIRA_PROJECT
is the Jira projectKey
used to add and edit issues.
When developing locally, environment
variables found in the .env
file at the root of your project are used. For
local development, rename .env.sample
to .env
and add your access token to
the file contents (replacing ACCESS_TOKEN
with your token):
# .env
ZOOM_JWT_TOKEN=ACCESS_TOKEN
Deployed apps use environment
variables that are added using slack env
. To add your access token to a
Workspace where your deployed app is installed, use the following command (once
again, replacing ACCESS_TOKEN
with your token):
$ slack env add ZOOM_JWT_TOKEN ACCESS_TOKEN
Hosted custom functions must declare which
outgoing domains are used when
making network requests, including Atlassian and Zoom calls. api.zoom.com
is
already configured as an outgoing domain in this sample's manifest, but you'll
also need to provide your Atlassian subdomain
(<your-subdomain>.atlassian.net
).
Triggers are what cause workflows to run. These triggers can be invoked by a user, or automatically as a response to an event within Slack.
When you run
or deploy
your project for the first time, the CLI will prompt
you to create a trigger if one is found in the triggers/
directory. For any
subsequent triggers added to the application, each must be
manually added using the trigger create
command.
When creating triggers, you must select the workspace and environment that you'd
like to create the trigger in. Each workspace can have a local development
version (denoted by (local)
), as well as a deployed version. Triggers created
in a local environment will only be available to use when running the
application locally.
A link trigger is a type of trigger that generates a Shortcut URL which, when posted in a channel or added as a bookmark, becomes a link. When clicked, the link trigger will run the associated workflow.
Link triggers are unique to each installed version of your app. This means that Shortcut URLs will be different across each workspace, as well as between locally run and deployed apps.
With link triggers, after selecting a workspace and environment, the output provided will include a Shortcut URL. Copy and paste this URL into a channel as a message, or add it as a bookmark in a channel of the workspace you selected. Interacting with this link will run the associated workflow.
Note: triggers won't run the workflow unless the app is either running locally or deployed!
To manually create a trigger, use the following command:
$ slack trigger create --trigger-def triggers/create_incident.ts
For storing data related to your app, datastores offer secure storage on Slack
infrastructure. For an example of a datastore, see datastores/incidents.ts
.
The use of a datastore requires the datastore:write
/datastore:read
scopes to
be present in your manifest.
Test filenames should be suffixed with _test
.
Run all tests with deno test
:
$ deno test
Once development is complete, deploy the app to Slack infrastructure using
slack deploy
:
$ slack deploy
When deploying for the first time, you'll be prompted to create a new link trigger for the deployed version of your app. When that trigger is invoked, the workflow should run just as it did when developing locally (but without requiring your server to be running).
Activity logs of your application can be viewed live and as they occur with the following command:
$ slack activity --tail
Contains apps.dev.json
and apps.json
, which include installation details for
development and deployed apps.
Datastores securely store data
for your application on Slack infrastructure. Required scopes to use datastores
include datastore:write
and datastore:read
.
Functions are reusable building blocks of automation that accept inputs, perform calculations, and provide outputs. Functions can be used independently or as steps in workflows.
Triggers determine when workflows are run. A trigger file describes the scenario in which a workflow should be run, such as a user pressing a button or when a specific event occurs.
A workflow is a set of steps (functions) that are executed in order.
Workflows can be configured to run without user input or they can collect input by beginning with a form before continuing to the next step.
The app manifest contains the app's configuration. This file defines attributes like app name and description.
Used by the CLI to interact with the project's SDK dependencies. It contains script hooks that are executed by the CLI and implemented by the SDK.
To learn more about developing automations on Slack, visit the following: