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 d8232e1 commit e4a3178Copy full SHA for e4a3178
index.ts
@@ -182,7 +182,6 @@ import {
182
type GetCommitDiffOptions,
183
ListMergeRequestDiffsSchema,
184
} from "./schemas.js";
185
-import { formatBoolean } from "./utils.js"
186
187
import { randomUUID } from "crypto";
188
import { pino } from 'pino';
@@ -1363,7 +1362,7 @@ async function createMergeRequest(
1363
1362
labels: options.labels?.join(","),
1364
allow_collaboration: options.allow_collaboration,
1365
draft: options.draft,
1366
- remove_source_branch: formatBoolean(options.remove_source_branch),
+ remove_source_branch: options.remove_source_branch,
1367
squash: options.squash,
1368
}),
1369
});
0 commit comments