Keep your team in the loop when Safe-to-Deploy flips from safe → risky → blocked. Alerts are designed for on-call engineers, SREs, and release managers.
Post Safe-to-Deploy decisions into a Slack channel using a simple incoming webhook.
Future support for posting the same alerts into Teams channels using incoming webhooks or connectors.
Whenever the Safe-to-Deploy engine evaluates a deployment, it produces a decision like safe, risky, or blocked. Alert channels can subscribe to these events.
Configuration is done in the web UI by an organisation admin or risk policy manager. No code changes are required for your engineers.
Risk Policy Manager role should be able to change alert
destinations. Regular users will still see the alert history and
Safe-to-Deploy decisions, but cannot change who gets notified.
This is roughly what a blocked deployment alert looks like once configured:
{
"text": "⛔ Deployment blocked for *Network* in *prod*",
"attachments": [
{
"color": "#dc2626",
"fields": [
{ "title": "Service", "value": "Network", "short": true },
{ "title": "Environment", "value": "prod", "short": true },
{ "title": "Risk level", "value": "red / blocked", "short": true },
{ "title": "Reason", "value": "SLO burn rate too high" }
]
}
]
}