> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-run-filter-ui-updates.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.

Les Automatisations W\&B suivent un schéma simple : lorsqu’un **événement** se produit et que des **conditions** facultatives sont remplies, une **action** s’exécute automatiquement. Par exemple :

* Lorsqu’un run échoue (événement), notifier un canal Slack (action).
  <br />
  <br />
  ```mermaid theme={null}
  %%{init: {'flowchart': {'rankSpacing': 200;}}}%%
  flowchart LR
    Event[État du run modifié en Failed]
    Action[Notification Slack]
    Event --> Action
  ```
  <br />
* Lorsque l’alias `production` est ajouté à un artefact (événement), appeler un webhook pour déclencher un déploiement (action).
  <br />
  <br />
  ```mermaid theme={null}
  flowchart LR
    Event[Alias d’artifact ajouté]
    Action[Webhook]
    Event --> Action
  ```
  <br />

Les événements et les conditions disponibles diffèrent selon que les automatisations s’appliquent à un [projet](/fr/models/automations/automation-events#project) ou à un [Registry](/fr/models/automations/automation-events#registry). Voir [événements et portée des automatisations](/fr/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.
