Skip to main content

createPublishGitlabMergeRequestAction()

Home > @backstage/plugin-scaffolder-backend-module-gitlab > createPublishGitlabMergeRequestAction

Create a new action that creates a gitlab merge request.

Signature:

createPublishGitlabMergeRequestAction: (options: {
integrations: ScmIntegrationRegistry;
}) => import("@backstage/plugin-scaffolder-node").TemplateAction<{
repoUrl: string;
title: string;
description: string;
branchName: string;
targetBranchName?: string;
sourcePath?: string;
targetPath?: string;
token?: string;
commitAction?: "create" | "delete" | "update" | "skip" | "auto";
projectid?: string;
removeSourceBranch?: boolean;
assignee?: string;
reviewers?: string[];
assignReviewersFromApprovalRules?: boolean;
}, import("@backstage/types").JsonObject, "v1">

Parameters

Parameter

Type

Description

options

{ integrations: ScmIntegrationRegistry; }

**Returns:**

import("@backstage/plugin-scaffolder-node").TemplateAction<{ repoUrl: string; title: string; description: string; branchName: string; targetBranchName?: string; sourcePath?: string; targetPath?: string; token?: string; commitAction?: "create" | "delete" | "update" | "skip" | "auto"; projectid?: string; removeSourceBranch?: boolean; assignee?: string; reviewers?: string[]; assignReviewersFromApprovalRules?: boolean; }, import("@backstage/types").JsonObject, "v1">