Customized Merge Request Detail Page
Everyone can contribute. Help move this issue forward while earning points, leveling up and collecting rewards.
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?