Skip to content

Commit e4a3178

Browse files
FEAT: enable string for boolean for claude (#150)
* FEAT: enable string for boolean for claude issue: #142 * REVERT
1 parent d8232e1 commit e4a3178

File tree

3 files changed

+86
-87
lines changed

3 files changed

+86
-87
lines changed

index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ import {
182182
type GetCommitDiffOptions,
183183
ListMergeRequestDiffsSchema,
184184
} from "./schemas.js";
185-
import { formatBoolean } from "./utils.js"
186185

187186
import { randomUUID } from "crypto";
188187
import { pino } from 'pino';
@@ -1363,7 +1362,7 @@ async function createMergeRequest(
13631362
labels: options.labels?.join(","),
13641363
allow_collaboration: options.allow_collaboration,
13651364
draft: options.draft,
1366-
remove_source_branch: formatBoolean(options.remove_source_branch),
1365+
remove_source_branch: options.remove_source_branch,
13671366
squash: options.squash,
13681367
}),
13691368
});

0 commit comments

Comments
 (0)