chore: fix api-reports

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2023-12-09 10:46:09 +01:00
parent 57d84d922a
commit 66a38b2d59
+2 -18
View File
@@ -46,15 +46,7 @@ export type ActionContext<
};
// @public (undocumented)
export function commitAndPushRepo({
dir,
auth,
logger,
commitMessage,
gitAuthorInfo,
branch,
remoteRef,
}: {
export function commitAndPushRepo(input: {
dir: string;
auth:
| {
@@ -149,15 +141,7 @@ export const getRepoSourceDirectory: (
) => string;
// @public (undocumented)
export function initRepoAndPush({
dir,
remoteUrl,
auth,
logger,
defaultBranch,
commitMessage,
gitAuthorInfo,
}: {
export function initRepoAndPush(input: {
dir: string;
remoteUrl: string;
auth: