Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Unified Diff: scripts/slave/recipes/infra/rebaseline_o_matic.py

Issue 1801213002: Set rebaseline bot name/email in chromium repo via git config. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: New expectations. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipes/infra/rebaseline_o_matic.expected/rebaseline_o_matic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/infra/rebaseline_o_matic.py
diff --git a/scripts/slave/recipes/infra/rebaseline_o_matic.py b/scripts/slave/recipes/infra/rebaseline_o_matic.py
index 5659ee4d7f90bc04a28411888b02058a431b6c16..c9683fa1d73dbe19eaaf68a5a8102e260c552e40 100644
--- a/scripts/slave/recipes/infra/rebaseline_o_matic.py
+++ b/scripts/slave/recipes/infra/rebaseline_o_matic.py
@@ -30,12 +30,14 @@ def RunSteps(api):
cwd = api.path['checkout'].join('third_party', 'WebKit')
+ # Changes should be committed and landed as the rebaseline bot role account.
+ api.git('config', 'user.name', 'Rebaseline Bot')
+ api.git('config', 'user.email', 'blink-rebaseline-bot@chromium.org')
+
api.python('webkit-patch auto-rebaseline',
cwd.join('Tools', 'Scripts', 'webkit-patch'),
['auto-rebaseline', '--verbose',
- '--auth-refresh-token-json', RIETVELD_REFRESH_TOKEN,
- '--commit-author',
- 'Rebaseline Bot <blink-rebaseline-bot@chromium.org>'],
+ '--auth-refresh-token-json', RIETVELD_REFRESH_TOKEN],
cwd=cwd)
« no previous file with comments | « no previous file | scripts/slave/recipes/infra/rebaseline_o_matic.expected/rebaseline_o_matic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698