> ## 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.

# オートメーションチュートリアルの概要

> project の run 失敗時アラートまたは Registry alias のオートメーションを作成する方法を学びます。

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).

詳しい手順については、チュートリアルを選択してください。

* **[project オートメーション チュートリアル](/ja/models/automations/project-automation-tutorial)**: run が失敗したときにアラートを送信します (Slack 通知) 。
* **[Registry オートメーション チュートリアル](/ja/models/automations/registry-automation-tutorial)**: alias (例: `production`) が artifact に追加されたときに webhook をトリガーします。
