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

# 자동화 튜토리얼 개요

> 프로젝트 run 실패 시 알림 또는 레지스트리 별칭 자동화를 구축하는 방법을 알아보세요.

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

자세한 안내는 튜토리얼을 선택하세요.

* **[프로젝트 자동화 튜토리얼](/ko/models/automations/project-automation-tutorial)**: run이 실패하면 Alert를 보냅니다(Slack 알림).
* **[레지스트리 자동화 튜토리얼](/ko/models/automations/registry-automation-tutorial)**: 아티팩트에 별칭(예: `production`)이 추가되면 웹훅을 트리거합니다.
