From 1b31c098bfaef772e37c36883dfe5d6d9f8f0999 Mon Sep 17 00:00:00 2001 From: Ilya Kuznetsov Date: Tue, 17 Dec 2024 14:16:54 +0100 Subject: [PATCH] fix: Example structure in annotationFile comment --- bundle/internal/schema/annotations.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bundle/internal/schema/annotations.go b/bundle/internal/schema/annotations.go index 05afbe54b..7b3f61bf6 100644 --- a/bundle/internal/schema/annotations.go +++ b/bundle/internal/schema/annotations.go @@ -31,6 +31,12 @@ type annotationHandler struct { empty annotationFile } +/** + * Parsed file with annotations, expected format: + * github.com/databricks/cli/bundle/config.Bundle: + * cluster_id: + * description: "Description" + */ type annotationFile map[string]map[string]annotation const Placeholder = "PLACEHOLDER"