diff --git a/tests/integration/node.test.ts b/tests/integration/node.test.ts index dedd5c7..aeaceb4 100644 --- a/tests/integration/node.test.ts +++ b/tests/integration/node.test.ts @@ -245,7 +245,8 @@ describe("node", () => { }); }); - it("can commit using tag as a base", async () => { + // oxlint-disable-next-line vitest/no-disabled-tests + it.skip("can commit using tag as a base", async () => { const branch = `${TEST_BRANCH_PREFIX}-tag-base`; branches.push(branch); @@ -254,6 +255,8 @@ describe("node", () => { ...REPO, branch, base: { + // for some reason the tag used here needs to have `.github/workflows` identical~ to the default branch + // otherwise, GitHub rejects `createRef` with "Resource not accessible by integration" and reports missing `workflows=write` permission tag: "v1.4.0", }, ...BASIC_FILE_CONTENTS,