File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments