diff --git a/errors/enum.go b/errors/enum.go index 080459a..b3ef6fe 100644 --- a/errors/enum.go +++ b/errors/enum.go @@ -119,8 +119,9 @@ var ErrorSeverity = map[ErrorCode]SeverityLevel{ ErrUnknownRulesKey: Warning, // Notes (if needed, add informational codes here) - ErrJobNameTooLong: Note, - ErrVariableNameTooLong: Note, - ErrNeedNameTooLong: Note, - ErrMissingFinalNewline: Note, + ErrJobNameTooLong: Note, + ErrVariableNameTooLong: Note, + ErrNeedNameTooLong: Note, + ErrMissingFinalNewline: Note, + ErrDependencyNotInNeeds: Note, } diff --git a/gitflamecivalidator/parser.go b/gitflamecivalidator/parser.go index c227765..aaea516 100644 --- a/gitflamecivalidator/parser.go +++ b/gitflamecivalidator/parser.go @@ -88,7 +88,6 @@ func ParseGitLabCIConfig(data []byte, ve *errors.ValidationError) (*GitLabCIConf if depVal.Kind == yaml.SequenceNode { for k := 0; k < len(depVal.Content); k++ { depNode := depVal.Content[k] - job.Dependencies = append(job.Dependencies, depNode.Value) job.DependencyLines[depNode.Value] = struct { Line int Column int