From 1cc08e1ddf21af15998324d39cac30a126fc1f68 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 27 Jan 2021 13:19:23 -0500 Subject: [PATCH] Add comment to PipelineRunSpecStatusPending Prior to this commit we didn't have a comment attached to the PipelinerunSpecStatusPending status string. This commit adds a comment to the status string. --- pkg/apis/pipeline/v1beta1/pipelinerun_types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/apis/pipeline/v1beta1/pipelinerun_types.go b/pkg/apis/pipeline/v1beta1/pipelinerun_types.go index 8220b4775b7..a18d9846fae 100644 --- a/pkg/apis/pipeline/v1beta1/pipelinerun_types.go +++ b/pkg/apis/pipeline/v1beta1/pipelinerun_types.go @@ -197,6 +197,8 @@ const ( // if not already cancelled or terminated PipelineRunSpecStatusCancelled = "PipelineRunCancelled" + // PipelineRunSpecStatusPending indicates that the user wants to postpone starting a PipelineRun + // until some condition is met PipelineRunSpecStatusPending = "PipelineRunPending" )