From c2675b1b466856f88f22d433912b559aa0db60a8 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Fri, 7 Jul 2023 14:11:53 +0200 Subject: [PATCH] Make workspace optional for bundle.yml --- bundle/config/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/config/root.go b/bundle/config/root.go index 8e83257330..189b1a7fdb 100644 --- a/bundle/config/root.go +++ b/bundle/config/root.go @@ -36,7 +36,7 @@ type Root struct { // Workspace contains details about the workspace to connect to // and paths in the workspace tree to use for this bundle. - Workspace Workspace `json:"workspace"` + Workspace Workspace `json:"workspace,omitempty"` // Artifacts contains a description of all code artifacts in this bundle. Artifacts map[string]*Artifact `json:"artifacts,omitempty"`