Customized Merge Request Detail Page
<!--IssueSummary start--> <details> <summary> Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards. </summary> - [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=15725) </details> <!--IssueSummary end--> I'm actually searching for an option to customize the Details Page of a Merge Request. I would like to have two additional information on this page. The first one would be some kind of a Dry Merge with some more information than the default one is able to give me. And the Second one would be a test whether the branch has common roots with the master or not. For booth points I have build git aliases which give me the necessary information. Dry Merge: git config --global alias.mergetest '!f() { git merge --no-commit --no-ff "$1"; git merge --abort; echo "Merge aborted"; } Common roots: git config --global alias.frommaster 'merge-base --fork-point master' But now to my current problem: I can't find any way to implement this additional information into the Merge Request Detail Page of GitLab is there any way to do that?
issue