From 971533c2ae96a5269700ba7307213f6bd4406472 Mon Sep 17 00:00:00 2001 From: Robert Iannucci Date: Fri, 14 Apr 2017 22:37:37 -0700 Subject: [PATCH] [recipes.cfg] add autoroll options. TBR=dnj@chromium.org Bug: Change-Id: I6f607578197408734da238189465ae1ff6a2000d Reviewed-on: https://chromium-review.googlesource.com/478833 Reviewed-by: Robbie Iannucci Commit-Queue: Robbie Iannucci --- infra/config/recipes.cfg | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/infra/config/recipes.cfg b/infra/config/recipes.cfg index 22d519f47c..8d6585642a 100644 --- a/infra/config/recipes.cfg +++ b/infra/config/recipes.cfg @@ -1,5 +1,6 @@ { "api_version": 2, + "canonical_repo_url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git", "deps": { "recipe_engine": { "branch": "master", @@ -8,5 +9,16 @@ } }, "project_id": "depot_tools", - "recipes_path": "recipes" -} \ No newline at end of file + "recipes_path": "recipes", + "autoroll_recipe_options": { + "trivial": { + "tbr_emails": [ + "iannucci@chromium.org" + ], + "automatic_commit": true + }, + "nontrivial": { + "automatic_commit_dry_run": true + } + } +}