> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-dependabot-github-actions-actions-cache-6.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)를 참조하세요.

이 페이지에서는 W\&B에서 자동화를 만드는 방법을 보여 주는 두 개의 엔드투엔드 튜토리얼로 연결됩니다. 각 튜토리얼은 서로 다른 시나리오를 안내하므로, 구축하려는 내용에 맞는 튜토리얼을 따라가면 됩니다. 자세한 안내는 튜토리얼을 선택하세요.

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