Generate API reports

Signed-off-by: ohjongsung <ohjongsung@gmail.com>
This commit is contained in:
ohjongsung
2023-05-23 10:27:01 +09:00
parent 6a694ce98e
commit e76e0391fe
2 changed files with 20 additions and 0 deletions
+16
View File
@@ -448,6 +448,22 @@ export function createPublishBitbucketServerAction(options: {
JsonObject
>;
// @public
export function createPublishBitbucketServerPullRequestAction(options: {
integrations: ScmIntegrationRegistry;
config: Config;
}): TemplateAction_2<
{
repoUrl: string;
title: string;
description?: string | undefined;
targetBranch: string;
sourceBranch: string;
token?: string | undefined;
},
JsonObject
>;
// @public
export function createPublishGerritAction(options: {
integrations: ScmIntegrationRegistry;
@@ -131,6 +131,10 @@ const findBranches = async (opts: {
return branch;
};
/**
* Creates a BitbucketServer Pull Request action.
* @public
*/
export function createPublishBitbucketServerPullRequestAction(options: {
integrations: ScmIntegrationRegistry;
config: Config;