From 47401bc918d7bc9654ca73f6010a912b25d77f96 Mon Sep 17 00:00:00 2001 From: Li Qingwen Date: Mon, 24 Feb 2025 15:24:34 +0800 Subject: [PATCH] Fix incorrect EnumMember value for Yaml Signed-off-by: Li Qingwen --- src/runner/Synapse.Runner/WorkflowOutputFormat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner/Synapse.Runner/WorkflowOutputFormat.cs b/src/runner/Synapse.Runner/WorkflowOutputFormat.cs index b8709054..27023066 100644 --- a/src/runner/Synapse.Runner/WorkflowOutputFormat.cs +++ b/src/runner/Synapse.Runner/WorkflowOutputFormat.cs @@ -28,6 +28,6 @@ public enum WorkflowOutputFormat /// /// Indicates that the workflow output should be formatted to YAML /// - [EnumMember(Value = "json")] + [EnumMember(Value = "yaml")] Yaml } \ No newline at end of file