diff --git a/pipelines/step.go b/pipelines/step.go index eb186c4..407b514 100644 --- a/pipelines/step.go +++ b/pipelines/step.go @@ -10,8 +10,8 @@ const ( ) type Step struct { - Name string `faker:"name"` - Type StepType `faker:"-"` + Name string `json:"name" faker:"name"` + Type StepType `json:"type" faker:"-"` } func (s Step) Translate() (IExecutableStep, error) {