From 294b792c5dcaf342cdda7793ea3bb9f02a8baaeb Mon Sep 17 00:00:00 2001 From: "Wei-Chun, Chang" Date: Wed, 25 Oct 2023 10:36:29 +0800 Subject: [PATCH] Make git branch information nullable (#914) Signed-off-by: Wei-Chun, Chang --- piperider_cli/profiler/schema.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/piperider_cli/profiler/schema.json b/piperider_cli/profiler/schema.json index 3eb5f7871..e5724066e 100644 --- a/piperider_cli/profiler/schema.json +++ b/piperider_cli/profiler/schema.json @@ -384,7 +384,14 @@ "type": "string" }, "git_branch": { - "type": "string" + "oneOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] }, "git_sha": { "type": "string"