Updated release tag on commitAndPushBranch function and api-report
Signed-off-by: Jason Froehlich <jfroehlich12@gmail.com>
This commit is contained in:
@@ -45,6 +45,41 @@ export type ActionContext<
|
||||
each?: JsonObject;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export function commitAndPushBranch({
|
||||
tempDir,
|
||||
dir,
|
||||
remoteUrl,
|
||||
auth,
|
||||
logger,
|
||||
commitMessage,
|
||||
gitAuthorInfo,
|
||||
branch,
|
||||
remoteRef,
|
||||
}: {
|
||||
tempDir: string;
|
||||
dir: string;
|
||||
remoteUrl: string;
|
||||
auth:
|
||||
| {
|
||||
username: string;
|
||||
password: string;
|
||||
}
|
||||
| {
|
||||
token: string;
|
||||
};
|
||||
logger: Logger;
|
||||
commitMessage: string;
|
||||
gitAuthorInfo?: {
|
||||
name?: string;
|
||||
email?: string;
|
||||
};
|
||||
branch?: string;
|
||||
remoteRef?: string;
|
||||
}): Promise<{
|
||||
commitHash: string;
|
||||
}>;
|
||||
|
||||
// @public (undocumented)
|
||||
export function commitAndPushRepo(input: {
|
||||
dir: string;
|
||||
|
||||
@@ -136,6 +136,9 @@ export async function commitAndPushRepo(input: {
|
||||
return { commitHash };
|
||||
}
|
||||
|
||||
/**
|
||||
* @public
|
||||
*/
|
||||
export async function commitAndPushBranch({
|
||||
tempDir,
|
||||
dir,
|
||||
|
||||
Reference in New Issue
Block a user