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.
2 parents f8392cf + faa56a6 commit 53a54c8Copy full SHA for 53a54c8
1 file changed
tests/integration/core.test.ts
@@ -208,13 +208,16 @@ describe("commitFilesFromBase64", () => {
208
});
209
210
211
- it("can commit using tag as a base", async () => {
+ // oxlint-disable-next-line vitest/no-disabled-tests
212
+ it.skip("can commit using tag as a base", async () => {
213
const branch = getTempBranch("tag-base");
214
onTestFinished(() => deleteBranch(branch));
215
216
await commitFilesFromBase64WithDefaults({
217
branch,
218
base: {
219
+ // for some reason the tag used here needs to have `.github/workflows` identical~ to the default branch
220
+ // otherwise, GitHub rejects `createRef` with "Resource not accessible by integration" and reports missing `workflows=write` permission
221
tag: "v1.4.0",
222
},
223
fileChanges: BASIC_FILE_CHANGES,
0 commit comments