main v0.0.7
andrew 3 weeks ago
parent ff576bdb22
commit dcb7382c43

@ -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,
}

@ -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

Loading…
Cancel
Save