@buildkite/buildkite-sdk
    Preparing search index...

    Interface GroupStep

    interface GroupStep {
        allow_dependency_failure?: AllowDependencyFailure;
        depends_on?: DependsOn;
        group: string;
        id?: string;
        identifier?: string;
        if?: string;
        if_changed?: IfChanged;
        key?: string;
        label?: string;
        name?: string;
        notify?: BuildNotify;
        skip?: Skip;
        steps: GroupSteps;
    }
    Index

    Properties

    allow_dependency_failure?: AllowDependencyFailure

    Whether to proceed with this step and further steps if a step named in the depends_on attribute fails

    depends_on?: DependsOn

    The step keys for a step to depend on

    group: string

    The name to give to this group of steps

    id?: string

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

    identifier?: string

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

    if?: string

    A boolean expression that omits the step when false

    if_changed?: IfChanged

    Agent-applied attribute: A glob pattern that omits the step from a build if it does not match any files changed in the build. Can be a single pattern, list of patterns, or an object with include/exclude attributes.

    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

    notify?: BuildNotify

    Array of notification options for this step

    skip?: Skip

    Whether this step should be skipped. Passing a string provides a reason for skipping this command

    steps: GroupSteps

    A list of steps