interface GroupStep {
    allow_dependency_failure?: boolean;
    depends_on?: null | string | (string | DependsOn)[];
    group: string;
    if?: string;
    key?: string;
    label?: string;
    notify?: (Notify | NotifyEnum)[];
    skip?: string | boolean;
    steps: (BlockStep | CommandStep | InputStep | TriggerStep | WaitStep)[];
}

Properties

allow_dependency_failure?: boolean
depends_on?: null | string | (string | DependsOn)[]
group: string
if?: string
key?: string
label?: string
notify?: (Notify | NotifyEnum)[]
skip?: string | boolean