@jameslnewell/buildkite-pipelines
    Preparing search index...

    Interface GroupStepSchema

    interface GroupStepSchema {
        depends_on?:
            | string
            | (string | { allow_failure?: boolean; step?: string })[]
            | null;
        group?: string;
        id?: string;
        identifier?: string;
        if?: string;
        key?: string;
        label?: string;
        name?: string;
        steps?: (
            | StringWaitStep
            | BlockStepSchema
            | "block"
            | InputStepSchema
            | NestedInputStep
            | "input"
            | CommandStepSchema
            | NestedCommandStep
            | WaitStepSchema
            | NestedWaitStep
            | TriggerStepSchema
            | NestedTriggerStep
        )[];
        type?: "group";
    }
    Index

    Properties

    depends_on?:
        | string
        | (string | { allow_failure?: boolean; step?: string })[]
        | null

    The step keys for a step to depend on

    group?: string

    The name to give to this group of steps

    id?: string

    A string identifier

    identifier?: string

    A string identifier

    if?: string

    A boolean expression that omits the step when false

    key?: string

    A unique identifier for a step, must not resemble a UUID

    label?: string

    The name to give to this group of steps

    name?: string

    The name to give to this group of steps

    steps?: (
        | StringWaitStep
        | BlockStepSchema
        | "block"
        | InputStepSchema
        | NestedInputStep
        | "input"
        | CommandStepSchema
        | NestedCommandStep
        | WaitStepSchema
        | NestedWaitStep
        | TriggerStepSchema
        | NestedTriggerStep
    )[]

    A list of steps

    type?: "group"