Scenario:
The result is that a reviewer/merger needs to keep checking back over a period of perhaps hours as they wait for tests to finish.
Solution:
Inspiration: https://github.com/uber-workflow/probot-app-merge-pr
To the Algolia team e.g. @samouss and @Haroenv, I often see you merging multiple PRs close together. Would this approach save you time? e.g. you manually review the PRs in a batch and add a comment "!merge" to each that is OK. Renovate will then merge them as fast as is possible allowing for any necessary conflict resolving, rebasing, retesting, etc.
I'd like it more if a review would do this, rather than !merge, is that possible?
It's possible today, although perhaps with some warning.
First of all, how that would work:
The warning is that maybe:
Those are good points, is there some way to check if reviewer can merge?
If you have restricted who can merge to master in the repo (e.g. in branch protection settings you have listed individuals or teams with merge rights) then unfortunately Renovate cannot merge. This is because of a GitHub bug/limitation where they don't offer any way to add an app (bot) to that list so all apps get blocked from merging if you enable that type of branch protection.
Otherwise, if you just mean users with write access to the repository vs read-only, then we can probably look that up. Please confirm if that's what you mean or if it's something else.
Maybe.. we could also add a new config option to renovate's config that lets you define which users should merge if they review/approve the PR.
I like the idea of using built-in functionality (reviewers) of the GitHub interface for this workflow.
(I use the merge when pipeline succeeds feature in GitLab quite often to help queue up merge requests when several come in at once)
Closed in favour of #3172
Reopening to add this comment by @azu in #3172:
Merge via comment is useful for me.
GitHub/GitLab supports commenting via email and I can merge the dependabot's PR from email client like gmail.
UseCase: renovatebot/dependabot create same Pull Request to multiple repositories at same time.
It is hard that open each PRs and click merge button.
Instead of it, I can just reply @dependabot merge from email client.

checkbox approach may not cover this case.
Most helpful comment
Maybe.. we could also add a new config option to renovate's config that lets you define which users should merge if they review/approve the PR.