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 28d1940Copy full SHA for 28d1940
2 files changed
src/core.ts
@@ -145,6 +145,12 @@ export const commitFilesFromBase64 = async ({
145
let tempRefId: string;
146
147
try {
148
+ console.log('createRef', JSON.stringify({
149
+ owner,
150
+ repo,
151
+ ref: `refs/heads/${tempBranch}`,
152
+ sha: baseOid,
153
+ }))
154
const createdTempRef = await octokit.rest.git.createRef({
155
owner,
156
repo,
tests/integration/node.test.ts
@@ -245,7 +245,7 @@ describe("node", () => {
245
});
246
247
248
- it("can commit using tag as a base", async () => {
+ it.only("can commit using tag as a base", async () => {
249
const branch = `${TEST_BRANCH_PREFIX}-tag-base`;
250
branches.push(branch);
251
0 commit comments