We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdaf0f0 commit d627acdCopy full SHA for d627acd
2 files changed
src/git.ts
@@ -45,15 +45,16 @@ export const commitChangesFromRepo = async ({
45
46
return await commitFilesFromBase64({
47
...otherArgs,
48
+ base: base ?? { commit: oid },
49
fileChanges: await getFileChanges(
50
workingDirectory,
51
repoRoot,
52
oid,
53
filterFiles,
54
),
- base: {
55
- commit: oid,
56
- },
+ // base: {
+ // commit: oid,
57
+ // },
58
});
59
};
60
tests/integration/node.test.ts
@@ -254,7 +254,7 @@ describe("node", () => {
254
...REPO,
255
branch,
256
base: {
257
- tag: "v2.1.0",
+ tag: "v1.4.0",
258
},
259
...BASIC_FILE_CONTENTS,
260
0 commit comments