| 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)
|
|
|
|
|
|
|