Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/integration/node.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand All @@ -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,
Expand Down