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

# 자동화 튜토리얼 개요

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

W\&B Automations는 단순한 패턴을 따릅니다. 즉, **이벤트**가 발생하고 선택 **조건**이 충족되면 **액션**이 자동으로 실행됩니다. 예를 들면 다음과 같습니다.

* run이 실패하면(이벤트), Slack 채널로 알림을 보냅니다(액션).
  <br />
  <br />
  ```mermaid theme={null}
  %%{init: {'flowchart': {'rankSpacing': 200;}}}%%
  flowchart LR
    Event[run 상태가 Failed로 변경]
    Action[Slack 알림]
    Event --> Action
  ```
  <br />
* 아티팩트에 `production` 별칭이 추가되면(이벤트), 배포를 트리거하는 웹훅을 호출합니다(액션).
  <br />
  <br />
  ```mermaid theme={null}
  flowchart LR
    Event[아티팩트 별칭이 추가됨]
    Action[웹훅]
    Event --> Action
  ```
  <br />

이벤트와 사용 가능한 조건은 [프로젝트](/ko/models/automations/automation-events#project) 범위인지 [레지스트리](/ko/models/automations/automation-events#registry) 범위인지에 따라 다릅니다. [Automation events and scopes](/ko/models/automations/automation-events)를 참조하세요.

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

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