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

    Interface WaitStepSchema

    interface WaitStepSchema {
        allow_dependency_failure?: boolean;
        continue_on_failure?: boolean;
        depends_on?:
            | string
            | (string | { allow_failure?: boolean; step?: string })[]
            | null;
        id?: string;
        identifier?: string;
        if?: string;
        key?: string;
        type?: "wait" | "waiter";
        wait?: "" | null;
        waiter?: "" | null;
    }
    Index

    Properties

    allow_dependency_failure?: boolean

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

    continue_on_failure?: boolean

    Continue to the next steps, even if the previous group of steps fail

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

    The step keys for a step to depend on

    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

    type?: "wait" | "waiter"
    wait?: "" | null

    Waits for previous steps to pass before continuing

    waiter?: "" | null