From e574352a717aebf9245f4ee468dabe031625863e Mon Sep 17 00:00:00 2001 From: Matt Klein Date: Thu, 2 Oct 2025 17:18:20 -0600 Subject: [PATCH] workflows: remove pgv annotation on optional field Signed-off-by: Matt Klein --- src/bitdrift_public/protobuf/workflow/v1/workflow.proto | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/bitdrift_public/protobuf/workflow/v1/workflow.proto b/src/bitdrift_public/protobuf/workflow/v1/workflow.proto index 19321ef..f327d5b 100644 --- a/src/bitdrift_public/protobuf/workflow/v1/workflow.proto +++ b/src/bitdrift_public/protobuf/workflow/v1/workflow.proto @@ -419,10 +419,9 @@ message Workflow { message Exact { }; - // For now we only support exact match, but in the future we might support more complex extraction logic like regex captures. + // For now we only support exact match, but in the future we might support more complex + // extraction logic like regex captures. If not specified, the default is exact match. oneof extraction_type { - option (validate.required) = true; - Exact exact = 2; } }