merge_when_pipeline_succeeds is always set to false via API call

157 Views Asked by At

I modified Merge Requests paramter "Merge checks" in GitLab UI, to enable Pipelines must succeed in a project settings.

When creating a merge request manually in the UI I see the merge blocked until the pipeline terminates and succeeds to be have the merge button enabled.

However, when using Merge Requests API the attribute merge_when_pipeline_succeeds is always set to false when calling a GET /projects/:id/merge_requests/:merge_request_iid

merge_when_pipeline_succeds is false when creating the MR via GitLab UI or via GitLab API call.

Do you know why the value of merge_when_pipeline_succeeds is not the same as the one configured in UI ?

1

There are 1 best solutions below

2
On BEST ANSWER

The property merge_when_pipeline_succeeds is separate from the check you enabled for your project. This property means that once the pipeline succeeds, the Merge Request will be automatically merged (true) or not (false). The check simply says that you cannot merge it until a pipeline succeeds, but doesn't affect the physical merging whatsoever.

You can see the result of all your configured merge checks in the merge_status property:

"merge_when_pipeline_succeeds": true,
"merge_status": "can_be_merged",

These are copied from the response in the API docs you linked above.

merge_when_pipeline_succeeds is set to true, so this means that once the pipeline finishes, and as long as there wasn't a failure, the Merge Request will automatically be merged.

merge_status is set to can_be_merged, so this is saying that any configured merge checks have all passed.