Notice the processing of Merge Request in Gitlab: Each MR needs to have a certain number of Approves before Merge
Want to know how to implement this function in Github? Or, how can we achieve this effect through curves?
Thank you
高洛峰2017-05-02 09:27:45
Github has a similar pull request
but voting is not mandatory, which means there is no requirement on how to merge
So when you want to achieve similar requirements, you will usually leave a comment under the PR (such as the common LGTM), and then after the number of approved comments reaches the required number, it will be merged by someone with merge permissions
How to implement this depends on people