From ed4a196bfb59b911d00d3f86bcb6558812091ea4 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Fri, 15 Nov 2019 16:13:17 +0100 Subject: [PATCH] =?UTF-8?q?Make=20sure=20v1alpha1.Condition=20satisfy=20we?= =?UTF-8?q?bhook.GenericCRD=20=E2=9A=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes Condition consistent with the rest of the CRDs defined by tektoncd/pipeline. Signed-off-by: Vincent Demeester --- pkg/apis/pipeline/v1alpha1/types_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/apis/pipeline/v1alpha1/types_test.go b/pkg/apis/pipeline/v1alpha1/types_test.go index 2b947cac6f7..ebf697c3ca6 100644 --- a/pkg/apis/pipeline/v1alpha1/types_test.go +++ b/pkg/apis/pipeline/v1alpha1/types_test.go @@ -30,4 +30,5 @@ func TestTypes(t *testing.T) { var _ webhook.GenericCRD = (*v1alpha1.PipelineResource)(nil) var _ webhook.GenericCRD = (*v1alpha1.Task)(nil) var _ webhook.GenericCRD = (*v1alpha1.TaskRun)(nil) + var _ webhook.GenericCRD = (*v1alpha1.Condition)(nil) }