interface TriggerStep {
    allow_dependency_failure?: boolean;
    async?: boolean;
    branches?: string | string[];
    build?: Build;
    depends_on?: null | string | (string | DependsOn)[];
    id?: string;
    identifier?: string;
    if?: string;
    key?: string;
    label?: string;
    name?: string;
    skip?: string | boolean;
    soft_fail?: boolean | SoftFail[];
    trigger: string;
}

Properties

allow_dependency_failure?: boolean
async?: boolean
branches?: string | string[]
build?: Build
depends_on?: null | string | (string | DependsOn)[]
id?: string
identifier?: string
if?: string
key?: string
label?: string
name?: string
skip?: string | boolean
soft_fail?: boolean | SoftFail[]
trigger: string