From 575234c26316614f305ba218ebf3b5a0912aae3e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 11 Nov 2024 08:54:17 +0100 Subject: [PATCH] fix --- pipeline/frontend/yaml/linter/linter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/frontend/yaml/linter/linter.go b/pipeline/frontend/yaml/linter/linter.go index 1503a1f68f1..105109a5885 100644 --- a/pipeline/frontend/yaml/linter/linter.go +++ b/pipeline/frontend/yaml/linter/linter.go @@ -78,7 +78,7 @@ func (l *Linter) lintFile(config *WorkflowConfig) error { var linterErr error if len(config.Workflow.Steps.ContainerList) == 0 { - linterErr = multierr.Append(linterErr, newLinterError("Invalid or missing steps section", config.File, "steps", false)) + linterErr = multierr.Append(linterErr, newLinterError("Invalid or missing `steps` section", config.File, "steps", false)) } if err := l.lintCloneSteps(config); err != nil {