feat: enhance CreateMergeRequest options with assignee, reviewer, and label support

This commit is contained in:
Martim Pimentel
2025-05-23 18:44:43 +01:00
parent fef360664e
commit bf369a43da
2 changed files with 20 additions and 0 deletions

View File

@ -1001,6 +1001,9 @@ async function createMergeRequest(
description: options.description,
source_branch: options.source_branch,
target_branch: options.target_branch,
assignee_ids: options.assignee_ids,
reviewer_ids: options.reviewer_ids,
labels: options.labels?.join(","),
allow_collaboration: options.allow_collaboration,
draft: options.draft,
}),