Open
Description
This is relevant to duck typed tasks, but I hit this in the context of trying to write some library code that deals with results (both spec/status) in a common way.
Right now the result types are identical, and the spec types only differ in this Value field:
// PipelineResult used to describe the results of a pipeline
type PipelineResult struct {
// Name the given name
Name string `json:"name"`
// Description is a human-readable description of the result
// +optional
Description string `json:"description"`
// Value the expression used to retrieve the value
Value string `json:"value"`
}
We will want a common type for these to live in our duck type anyways, so we should think about consolidating these shapes.
/assign @imjasonh
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Todo