From 9b31aa7f9328bace073af23a38e92236489d1c0d Mon Sep 17 00:00:00 2001 From: Aditya Raisinghani Date: Tue, 15 Jul 2025 23:41:26 +0530 Subject: [PATCH 1/2] Fix missing dot in grpc service host validation in the schema. Signed-off-by: Aditya Raisinghani --- schema/workflow.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/workflow.yaml b/schema/workflow.yaml index 80c9175c..da39b1c4 100644 --- a/schema/workflow.yaml +++ b/schema/workflow.yaml @@ -310,7 +310,7 @@ $defs: type: string title: WithGRPCServiceHost description: The hostname of the GRPC service to call. - pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$ + pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-.]{0,61}[a-zA-Z0-9])?$ port: type: integer title: WithGRPCServicePost From 788cc1cfd1946006a6a1734ab21d5445759b2663 Mon Sep 17 00:00:00 2001 From: Aditya Raisinghani Date: Tue, 15 Jul 2025 23:48:27 +0530 Subject: [PATCH 2/2] Fix typo. Signed-off-by: Aditya Raisinghani --- schema/workflow.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/workflow.yaml b/schema/workflow.yaml index da39b1c4..9405bfa3 100644 --- a/schema/workflow.yaml +++ b/schema/workflow.yaml @@ -313,7 +313,7 @@ $defs: pattern: ^[a-zA-Z0-9](?:[a-zA-Z0-9-.]{0,61}[a-zA-Z0-9])?$ port: type: integer - title: WithGRPCServicePost + title: WithGRPCServicePort description: The port number of the GRPC service to call. minimum: 0 maximum: 65535