You can easily send such Slack notifications when something happens to your Environments:

Create an Automation

Create a new "Slack" Automation (as explained here: Automations):

Configure Incoming Webhook

Then, you need to get your Slack Incoming Webhook URL:

  1. 1.Go on the Slack Incoming WebHooks page and login to your Slack account

  2. 2.Choose the default channel on which the notifications will be sent

  3. 3.Click on the “Add Incoming WebHooks integration”

Then, copy-paste the Webhook URL…

…to your Slack Automation configuration page:

Custom Notifications

Enable the "Custom Message" toggle in order to customize content of your Slack notifications.

Start from the provided default template to build your own custom templates:

{
  "icon_emoji": ":rocket:",
  "username": "Golive",
  "blocks": [
    {
      "type": "section",
      "text": {
        "type": "mrkdwn",
        "text": "

{% autoescape "js" %}Environment *{{environment.application.name}} {{environment.category.name}}* has been updated by *{{user.displayName}}*.{% endautoescape %}"
      }
    },
    {
      "type": "context",
      "elements": [
        {
          "type": "mrkdwn",
          "text": "{% autoescape "js" %}What has changed?\n\n{% for change in environmentChanges %}{% if change.toString is not null %}{% set newValue = change.toString %}{% else %}{% set newValue = "-" %}{% endif %}{% if change.fromString is not null %}:black_small_square: *{{change.field}}*: {{newValue}} (was {{change.fromString}})\n{% endif %}{% endfor %}{% endautoescape %}"
        }
      ]
    },
    {
      "type": "context",
      "elements": [
        {
          "type": "mrkdwn",
          "text": "{% autoescape "js" %}Details:\n\n:black_small_square: *URL*: {% if environment.url is not null %}{{environment.url}}{% else %}-{% endif %}\n:black_small_square: *Status*: {% if environment.status is not null %}{{environment.status.name}}{% else %}-{% endif %}\n:black_small_square: *Deployed*: {% if environment.deployment is not null %}{{environment.deployment.versionName}}{% else %}-{% endif %}{% endautoescape %}"
        }
      ]
    },
    {
      "type": "context",
      "elements": [
        {
          "type": "mrkdwn",
          "text": "{% autoescape "js" %}Attributes:\n\n{% for attribute in environment.attributes %}:black_small_square: *{{attribute.key}}*: {{attribute.value}}\n{% endfor %}{% endautoescape %}


"
        }
      ]
    }
  ]
}
JSON

You can design custom Slack Notification using Block Kit Builder and insert dynamic content using Pebble Templates syntax.

In order to test your Automation, choose an Example Environment and click on the Test button.

Useful Resources

https://api.slack.com/messaging/webhooks

https://app.slack.com/block-kit-builder

https://pebbletemplates.io/