Backstage
    Preparing search index...
    createPublishBitbucketServerPullRequestAction: (
        options: { config: Config; integrations: ScmIntegrationRegistry },
    ) => TemplateAction<
        {
            description?: string;
            gitAuthorEmail?: string;
            gitAuthorName?: string;
            repoUrl: string;
            reviewers?: string[];
            sourceBranch: string;
            targetBranch?: string;
            title: string;
            token?: string;
        },
        { pullRequestUrl?: string },
        "v2",
    > = bitbucketServer.createPublishBitbucketServerPullRequestAction

    Type Declaration

      • (
            options: { config: Config; integrations: ScmIntegrationRegistry },
        ): TemplateAction<
            {
                description?: string;
                gitAuthorEmail?: string;
                gitAuthorName?: string;
                repoUrl: string;
                reviewers?: string[];
                sourceBranch: string;
                targetBranch?: string;
                title: string;
                token?: string;
            },
            { pullRequestUrl?: string },
            "v2",
        >
      • Creates a BitbucketServer Pull Request action.

        Parameters

        Returns TemplateAction<
            {
                description?: string;
                gitAuthorEmail?: string;
                gitAuthorName?: string;
                repoUrl: string;
                reviewers?: string[];
                sourceBranch: string;
                targetBranch?: string;
                title: string;
                token?: string;
            },
            { pullRequestUrl?: string },
            "v2",
        >

    use import from @backstage/plugin-scaffolder-backend-module-bitbucket-server instead