search

Home  >  Q&A  >  body text

How does Github implement the ‘Approvals required’ function similar to Merge requests in Gitlab?

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

怪我咯怪我咯2793 days ago630

reply all(1)I'll reply

  • 高洛峰

    高洛峰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

    reply
    0
  • Cancelreply