Since latest versions of GitLab, the API now returns the MR status. For example: ```json ... "merge_when_pipeline_succeeds": true, "merge_status": "can_be_merged", "subscribed" : true, ... ``` source: https://docs.gitlab.com/ee/api/merge_requests.html#list-merge-requests merge_status possible values are: `can_be_merged`, `cannot_be_merged` and `unchecked`. We could use this new information to create a new column "status" with a badge. Possible rendering of the new feature:    Depending of the projet/team workflow validation, this feature could give duplicate results with the CI badge.
Since latest versions of GitLab, the API now returns the MR status. For example:
source: https://docs.gitlab.com/ee/api/merge_requests.html#list-merge-requests
merge_status possible values are:
can_be_merged,cannot_be_mergedandunchecked.We could use this new information to create a new column "status" with a badge.
Possible rendering of the new feature:
Depending of the projet/team workflow validation, this feature could give duplicate results with the CI badge.