How to un-approve github review after new commits automatically

后端 未结 2 1127
鱼传尺愫
鱼传尺愫 2020-12-30 20:14

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

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

Can this be d

相关标签:
2条回答
  • 2020-12-30 20:30

    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.

    dismiss review

    0 讨论(0)
  • 2020-12-30 20:31

    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.

    0 讨论(0)
提交回复
热议问题