How to un-approve github review after new commits automatically

孤街醉人 提交于 2019-11-29 10:48:54

问题


Once a pull request is approved, if there are further commits:

The Pull request should go to un-approved state automatically.

Can this be done?


回答1:


The ability to Dismiss stale pull request approvals when new commits are pushed is a setting under Require pull request reviews before merging in the branch protection settings. This is disabled by default.




回答2:


This isn't currently offered.

You can create an application that listens for push webhook events, queries the API for all Reviews for a Pull Request, and dismisses any that are APPROVED.

Here is a Ruby script you could host on heroku.



来源:https://stackoverflow.com/questions/41824374/how-to-un-approve-github-review-after-new-commits-automatically

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!