Backstage
    Preparing search index...

    An individual step of a scaffolder task, as stored in the database.

    interface TaskStep {
        action: string;
        each?: string | JsonArray;
        id: string;
        if?: string | boolean;
        input?: JsonObject;
        name: string;
    }
    Index

    Properties

    action: string

    The underlying action ID that will be called as part of running this step.

    each?: string | JsonArray

    Run step repeatedly

    id: string

    A unique identifier for this step.

    if?: string | boolean

    When this is false, or if the templated value string evaluates to something that is falsy the step will be skipped.

    input?: JsonObject

    Additional data that will be passed to the action.

    name: string

    A display name to show the user.