interface GitlabTriggerNodeParameters {
authentication?: "oAuth2" | "accessToken";
events?: (
| "*"
| "pipeline"
| "job"
| "push"
| "note"
| "deployment"
| "issues"
| "confidential_issues"
| "confidential_note"
| "merge_requests"
| "releases"
| "tag_push"
| "wiki_page"
)[];
owner?: string;
repository?: string;
}Properties§
§§§
readonly authentication?: "oAuth2" | "accessToken"§
readonly events?: (
| "*"
| "pipeline"
| "job"
| "push"
| "note"
| "deployment"
| "issues"
| "confidential_issues"
| "confidential_note"
| "merge_requests"
| "releases"
| "tag_push"
| "wiki_page"
)[]The events to listen to Default: []
readonly owner?: stringOwner of the repository
readonly repository?: stringThe name of the repository
Default: "accessToken"