> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-mintlify-bbaa8558.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Aperçu du tutoriel sur l’automatisation

> Découvrez comment créer une alerte d’échec d’exécution pour un projet ou une automatisation d’alias de registre.

W\&B Automations follow a simple pattern: when an **event** occurs and optional **conditions** are met, an **action** runs automatically. For example:

* When a run fails (event), notify a Slack channel (action).
  <br />
  <br />
  ```mermaid theme={null}
  %%{init: {'flowchart': {'rankSpacing': 200;}}}%%
  flowchart LR
    Event[Run state change to Failed]
    Action[Slack notification]
    Event --> Action
  ```
  <br />
* When the `production` alias is added to an artifact (event), call a webhook to trigger deployment (action).
  <br />
  <br />
  ```mermaid theme={null}
  flowchart LR
    Event[Artifact alias added]
    Action[Webhook]
    Event --> Action
  ```
  <br />

Events and available conditions differ for automations scoped to a [project](/models/automations/automation-events#project) or a [registry](/models/automations/automation-events#registry). See [Automation events and scopes](/models/automations/automation-events).

Sélectionnez un tutoriel pour obtenir des instructions détaillées.

* **[Tutoriel d'automatisation de projet](/fr/models/automations/project-automation-tutorial)**: Recevoir une alerte lorsqu'un run échoue (notification Slack).
* **[Tutoriel d'automatisation du registre](/fr/models/automations/registry-automation-tutorial)**: Déclencher un webhook lorsqu'un alias (par exemple, `production`) est ajouté à un artefact.
