backblaze-labs/b2-action - v0.1.0
    Preparing search index...

    Interface SummaryRow

    One row in the $GITHUB_STEP_SUMMARY table emitted by a verb. Only fileName is required; the other cells render empty when omitted.

    interface SummaryRow {
        fileId?: string;
        fileName: string;
        sha1?: string | null;
        size?: number;
        status?: string;
    }
    Index

    Properties

    fileId?: string

    B2 file ID (rendered as inline code).

    fileName: string

    B2 file name or display label (e.g. (uploaded), (removed)).

    sha1?: string | null

    Content SHA-1. Truncated to 12 chars in the table for readability.

    size?: number

    Byte size of the file. Rendered via formatBytes.

    status?: string

    Free-form status cell (e.g. uploaded, would delete, deleted).