Alerts
Warestack turns rule outcomes and event conditions into alerts. Instead of polling dashboards, your team gets notified the moment something breaks your checks, complete with context and next steps.
Example alert
A workflow run fails on staging. Warestack sends a Slack alert to #backend and comments on the linked Linear issue to track remediation.
From your mind to an active check.
CONDITION
IF workflow_run.status = 'failure'
AND workflow_run.environment = 'staging'
THEN ALERT channels = ['slack:#backend', 'linear:LIN-431']Types of Alerts
Warestack supports two ways to generate alerts:
-
Event-driven alerts for example e.g., workflow, deployment, review events triggered directly by live events like failed workflow runs.
-
Check-driven alerts bsaed on agentic checks and deterministic conditions. Alerts activated when a rule evaluates to violation, e.g., PR touches
infra/without SRE approval.