From da625967c32c9d661d6c4a3e9fbe9603cd5c2791 Mon Sep 17 00:00:00 2001
From: Ronen Lubin <ronen7822@gmail.com>
Date: Wed, 25 Sep 2024 14:30:05 +0300
Subject: [PATCH] doc/md: fix yml example in declarative push

---
 doc/md/declarative/plan.mdx | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc/md/declarative/plan.mdx b/doc/md/declarative/plan.mdx
index 5f6ecca0754..bf07f746c7e 100644
--- a/doc/md/declarative/plan.mdx
+++ b/doc/md/declarative/plan.mdx
@@ -503,7 +503,7 @@ on:
     branches:
       - master
     paths:
-      - .github/workflows/atlas-push.yaml
+      - .github/workflows/schema-push.yml
       - 'schema.sql' # Can be HCL, ORM, other instead.
 permissions:
   contents: read
@@ -520,6 +520,7 @@ jobs:
       - uses: ariga/atlas-action/schema/push@master
         with:
           env: dev # Use the "dev" environment from the atlas.hcl file.
+          tag: latest # Optional, to tag the schema state (by default, it uses the git commit hash).
 ```
 
 :::info ATLAS_TOKEN