File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1357,6 +1357,7 @@ async function createMergeRequest(
1357
1357
description : options . description ,
1358
1358
source_branch : options . source_branch ,
1359
1359
target_branch : options . target_branch ,
1360
+ target_project_id : options . target_project_id ,
1360
1361
assignee_ids : options . assignee_ids ,
1361
1362
reviewer_ids : options . reviewer_ids ,
1362
1363
labels : options . labels ?. join ( "," ) ,
Original file line number Diff line number Diff line change @@ -833,6 +833,7 @@ const MergeRequestOptionsSchema = {
833
833
description : z . string ( ) . optional ( ) . describe ( "Merge request description" ) ,
834
834
source_branch : z . string ( ) . describe ( "Branch containing changes" ) ,
835
835
target_branch : z . string ( ) . describe ( "Branch to merge into" ) ,
836
+ target_project_id : z . coerce . string ( ) . optional ( ) . describe ( "Numeric ID of the target project." ) ,
836
837
assignee_ids : z
837
838
. array ( z . number ( ) )
838
839
. optional ( )
You can’t perform that action at this time.
0 commit comments