diff --git a/tools_webrtc/autoroller/roll_deps.py b/tools_webrtc/autoroller/roll_deps.py index 02a17c57aa..1d07ed7947 100755 --- a/tools_webrtc/autoroller/roll_deps.py +++ b/tools_webrtc/autoroller/roll_deps.py @@ -645,8 +645,11 @@ def _UploadCL(commit_queue_mode): cmd = ['git', 'cl', 'upload', '--force', '--bypass-hooks'] if commit_queue_mode >= 2: logging.info('Sending the CL to the CQ...') + # Sets Commit-Queue+2. cmd.extend(['--use-commit-queue']) cmd.extend(['--send-mail', '--cc', NOTIFY_EMAIL]) + # Sets Bot-Commit+1. + cmd.extend(['-o', 'label=Bot-Commit+1']) elif commit_queue_mode >= 1: logging.info('Starting CQ dry run...') cmd.extend(['--cq-dry-run'])