Compare commits

..

No commits in common. 'main' and 'v0.0.6' have entirely different histories.
main ... v0.0.6

@ -119,9 +119,8 @@ var ErrorSeverity = map[ErrorCode]SeverityLevel{
ErrUnknownRulesKey: Warning,
// Notes (if needed, add informational codes here)
ErrJobNameTooLong: Note,
ErrVariableNameTooLong: Note,
ErrNeedNameTooLong: Note,
ErrMissingFinalNewline: Note,
ErrDependencyNotInNeeds: Note,
ErrJobNameTooLong: Note,
ErrVariableNameTooLong: Note,
ErrNeedNameTooLong: Note,
ErrMissingFinalNewline: Note,
}

@ -88,6 +88,7 @@ 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