Easily integrate custom Slack notifications into your CircleCI projects. Create custom alert messages for any job or receive status updates.
Learn more about Orbs.
Example config:
version: 2.1
orbs:
slack: circleci/slack@volatile
jobs:
build:
docker:
- image: <docker image>
steps:
- slack/<command>slack@volatile from the circleci namespace is imported into slack which can then be referenced in a step in any job you require.
| Usage | slack/notify |
|---|---|
| Description: | Notify a slack channel with a custom message at any point in a job with this custom step. |
| Parameters: | - webhook: Enter either your Webhook value or use the CircleCI UI to add your token under the SLACK_WEBHOOK environment variable - message: Enter your custom message to send to your Slack channel. - mentions: A comma separated list of Slack user IDs, or Group (SubTeam) IDs. example 'USER1,USER2,USER3'. Note, these are Slack User IDs, not usernames. The user ID can be found on the user's profile. Look below for infomration on obtaining Group ID. - color: Color can be set for a notification to help differentiate alerts. |
Example:
version: 2.1
orbs:
slack: circleci/slack@volatile
jobs:
build:
docker:
- image: <docker image>
steps:
- slack/notify:
message: "This is a custom message notification" # Optional: Enter your own message
mentions: "USERID1,USERID2," # Optional: Enter the Slack IDs of any user or group (sub_team) to be mentioned
color: "#42e2f4" # Optional: Assign custom colors for each notification
webhook: "webhook" # Optional: Enter a specific webhook here or the default will use $SLACK_WEBHOOKSee Slack's Basic message formatting documentation for guidance on formatting notification messages.
| Usage | slack/status |
|---|---|
| Description: | Send a status alert at the end of a job based on success or failure. This must be the last step in a job. |
| Parameters: | - webhook: Enter either your Webhook value or use the CircleCI UI to add your token under the SLACK_WEBHOOK environment variable - fail_only: false by default. If set to `true, successful jobs will not send alerts - mentions: comma separated list of Slack user IDs, or Group (SubTeam) IDs. example 'USER1,USER2,USER3'. Note, these are Slack User IDs, not usernames. The user ID can be found on the user's profile. Look below for infomration on obtaining Group ID. - only_for_branch: Optional: If set, a specific branch for which status updates will be sent. |
Example:
version: 2.1
orbs:
slack: circleci/slack@volatile
jobs:
build:
docker:
- image: <docker image>
steps:
# With fail_only set to true, no alert will be sent in this example. Change the exit status on the next line to produce an error.
- run: exit 0
- slack/status:
mentions: "USERID1,USERID2" # Optional: Enter the Slack IDs of any user or group (sub_team) to be mentioned
fail_only: "true" # Optional: if set to "true" then only failure messages will occur.
webhook: "webhook" # Optional: Enter a specific webhook here or the default will use $SLACK_WEBHOOK
only_for_branch: "master" # Optional: If set, a specific branch for which status updates will be sent. In this case, only for pushes to master branch.Due to the limitations of the sh shell, Bash is required. Bash is the default shell used on CircleCI and the Orb will be compatible with most images. Images such as Alpine that do not contain the Bash shell by default are incompatible and en error message will be logged. You may install the Bash shell through your package manager (example: apk add bash) in the Dockerfile for the image you are using.
cURL is used to post the Webhook data and must be installed in the container to function properly.
How to get your Slack Webhook: Full instructions can be found at Slack: https://api.slack.com/incoming-webhooks
- Create Slack App. This will also be the name of the "user" that posts alerts to Slack. You'll be asked for which Workspace this app belongs to.
- In the settings for the app, enable
Incoming Webhooks - In the left hand panel of your Slack app settings, under
FeaturesclickIncoming Webhooks - Click
Add New Webhook to Workspace. You will be asked to pick a channel for the webhook here. - Done! A webhook URL will be created.
How To Get Your Group ID:
- Navigate to https://api.slack.com/methods/usergroups.list/test
- Select the correct application under "token"
- Press "Test Method"
- Find your group below and copy the value for "ID"
What to do with Slack Webhook: You can implement the Webhook in one of two ways, as an environment variable, or as a parameter.
- In the settings page for your project on CircleCI, click
Environment Variables. From that page you can click theAdd Variablebutton. Finally, enter your webhook as the value, andSLACK_WEBHOOKas the name. - You can enter the Webhook for the individual status or alert by entering is at the
webhookparameter, as shown above.