pipeline/groups: add missing Name field

This commit is contained in:
Lars Karlitski 2019-11-27 02:17:53 +01:00 committed by Tom Gundersen
parent 1135e9fe01
commit 72e7ea7de1

View file

@ -7,7 +7,8 @@ type GroupsStageOptions struct {
func (GroupsStageOptions) isStageOptions() {}
type GroupsStageOptionsGroup struct {
GID *string `json:"gid,omitempty"`
Name string `json:"name"`
GID *string `json:"gid,omitempty"`
}
func NewGroupsStage(options *GroupsStageOptions) *Stage {