Skip to content

Commit 688f202

Browse files
committed
fix lint
1 parent 117c552 commit 688f202

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/core.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ const getOidFromRef = (
4242
return ref.target.oid;
4343
};
4444

45-
const isAlreadyExistingRefError = (
46-
error: unknown,
47-
) =>
45+
const isAlreadyExistingRefError = (error: unknown) =>
4846
typeof error === "object" &&
4947
error !== null &&
5048
"status" in error &&
@@ -190,7 +188,7 @@ export const commitFilesFromBase64 = async ({
190188
tempRefId = refIdStr;
191189
}
192190

193-
await log?.debug(`Creating commit on branch ${tempBranch}`);
191+
log?.debug(`Creating commit on branch ${tempBranch}`);
194192
const tempCommit = await createCommit({
195193
octokit,
196194
refId: tempRefId,
@@ -255,7 +253,7 @@ export const commitFilesFromBase64 = async ({
255253
refId = sameBranchBase ? resolvedBaseRef!.id : info.targetBranch!.id;
256254
}
257255

258-
await log?.debug(`Creating commit on branch ${branch}`);
256+
log?.debug(`Creating commit on branch ${branch}`);
259257
const newCommit = await createCommit({
260258
octokit,
261259
refId,

0 commit comments

Comments
 (0)