Interface GitlabTriggerNodeParameters

Source
interface GitlabTriggerNodeParameters {
    authentication?: "oAuth2" | "accessToken";
    events?: (
        | "*"
        | "pipeline"
        | "job"
        | "note"
        | "push"
        | "deployment"
        | "issues"
        | "confidential_issues"
        | "confidential_note"
        | "merge_requests"
        | "releases"
        | "tag_push"
        | "wiki_page"
    )[];
    owner?: string;
    repository?: string;
}

Properties§

Source§

readonly authentication?: "oAuth2" | "accessToken"

Default: "accessToken"

Source§

readonly events?: (
    | "*"
    | "pipeline"
    | "job"
    | "note"
    | "push"
    | "deployment"
    | "issues"
    | "confidential_issues"
    | "confidential_note"
    | "merge_requests"
    | "releases"
    | "tag_push"
    | "wiki_page"
)[]

The events to listen to Default: []

Source§

readonly owner?: string

Owner of the repository

Source§

readonly repository?: string

The name of the repository