handle duplicate names in conversion

This commit is contained in:
Brad Rydzewski 2019-06-10 15:04:37 -07:00
parent e68eb6cba4
commit a338c245d7
1 changed files with 8 additions and 0 deletions

View File

@ -86,6 +86,14 @@ func Convert(d []byte) ([]byte, error) {
)
}
names := map[string]struct{}{}
for i, step := range pipeline.Steps {
if _, ok := names[step.Name]; ok {
step.Name = fmt.Sprintf("%s_%d", step.Name, i)
}
names[step.Name] = struct{}{}
}
pipeline.Volumes = toVolumes(from)
pipeline.Trigger.Branch.Include = from.Branches.Include
pipeline.Trigger.Branch.Exclude = from.Branches.Exclude