diff --git a/automation/alerts/generate_monitor_workflow.py b/automation/alerts/generate_monitor_workflow.py index e6f5bd8..04e9d6c 100644 --- a/automation/alerts/generate_monitor_workflow.py +++ b/automation/alerts/generate_monitor_workflow.py @@ -4,7 +4,9 @@ import subprocess REPOS = { "dev-tools": "https://git.dvirlabs.com/dvirlabs/dev-tools.git", - "infra": "https://git.dvirlabs.com/dvirlabs/infra.git" + "infra": "https://git.dvirlabs.com/dvirlabs/infra.git", + "observability-stack": "https://git.dvirlabs.com/dvirlabs/observability-stack.git", + "sandbox": "https://git.dvirlabs.com/dvirlabs/sandbox.git", } # ✅ CORRECT GitHub repo (lab-monitor, not apps-gitops) @@ -114,6 +116,7 @@ def push_workflow(): result = subprocess.run(["git", "clone", GITHUB_REPO, REPO_PATH]) if result.returncode != 0: raise Exception("❌ Failed to clone lab-monitor repo") + subprocess.run(["ls -l", REPO_PATH]) # ✅ Checkout main (GitHub default branch) subprocess.run(["git", "-C", REPO_PATH, "fetch"], check=True)