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

    Interface InputStepSchema

    interface InputStepSchema {
        allow_dependency_failure?: boolean;
        branches?: string | string[];
        depends_on?:
            | string
            | (string | { allow_failure?: boolean; step?: string })[]
            | null;
        fields?: Fields;
        id?: string;
        identifier?: string;
        if?: string;
        input?: string;
        key?: string;
        label?: string;
        name?: string;
        prompt?: string;
        type?: "input";
    }
    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

    branches?: string | string[]

    Which branches will include this step in their builds

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

    The step keys for a step to depend on

    fields?: Fields
    id?: string

    A string identifier

    identifier?: string

    A string identifier

    if?: string

    A boolean expression that omits the step when false

    input?: string

    The label of the input step

    key?: string

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

    label?: string

    The label that will be displayed in the pipeline visualisation in Buildkite. Supports emoji.

    name?: string

    The label that will be displayed in the pipeline visualisation in Buildkite. Supports emoji.

    prompt?: string

    The instructional message displayed in the dialog box when the unblock step is activated

    type?: "input"