Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: [AH-1034]: Add AR triggers doc #9539

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/artifact-registry/triggers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Triggers
sidebar_position: 20
sidebar_label: Triggers
---

In the Artifact Registry in Harness, **Triggers** automate actions based on events related to your artifacts, and allow you to streamline workflows by responding dynamically to changes in your artifact repositories.

## Types of Triggers
1. **Artifact Ingestion**
- Executes when a new artifact is pushed to the registry.
- Useful for automating deployments or notifying downstream systems.
2. **Artifact Update**
- Fires when an existing artifact is updated.
- Can be used to track and validate changes.
3. **Artifact Deletion**
- Triggers when an artifact is deleted from the registry.
- Helps with cleanup automation or compliance monitoring.

## Use Cases for Triggers
- **CI/CD Automation:** Start a pipeline when a new artifact is ingested.
- **Version Control:** Notify teams when a new version of an artifact is available.
- **Security & Compliance:** Scan artifacts when they are pushed or updated.
- **Cleanup & Retention Policies:** Automatically remove outdated artifacts.
1 change: 1 addition & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ const sidebars: SidebarsConfig = {
collapsed: true,
items: [ { type: "autogenerated", dirName: "artifact-registry/manage-artifacts", } ],
},
"artifact-registry/triggers",
{
type: "category",
label: "Platform Integrations",
Expand Down