Skip to content

Commit d627acd

Browse files
committed
Try base through base
1 parent fdaf0f0 commit d627acd

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/git.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,16 @@ export const commitChangesFromRepo = async ({
4545

4646
return await commitFilesFromBase64({
4747
...otherArgs,
48+
base: base ?? { commit: oid },
4849
fileChanges: await getFileChanges(
4950
workingDirectory,
5051
repoRoot,
5152
oid,
5253
filterFiles,
5354
),
54-
base: {
55-
commit: oid,
56-
},
55+
// base: {
56+
// commit: oid,
57+
// },
5758
});
5859
};
5960

tests/integration/node.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ describe("node", () => {
254254
...REPO,
255255
branch,
256256
base: {
257-
tag: "v2.1.0",
257+
tag: "v1.4.0",
258258
},
259259
...BASIC_FILE_CONTENTS,
260260
});

0 commit comments

Comments
 (0)