From 2dc8ba32da7fda034939f7f6eb62b04b7519f07a Mon Sep 17 00:00:00 2001 From: Elliot Winkler Date: Wed, 10 Aug 2022 09:45:21 -0600 Subject: [PATCH] Fix deploying the TS migration dashboard (#15516) When the TypeScript migration dashboard is updated, it is built and deployed in another repo, which is then deployed via GitHub Pages. To push to this repo we have to set a Git username and email. This is missing from the CircleCI config, so this commit uses the metamaskbot GitHub account to do that. --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1c9826392..865639fa1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -762,6 +762,8 @@ jobs: name: ts-migration-dashboard:deploy command: | git remote add ts-migration-dashboard git@github.com:MetaMask/metamask-extension-ts-migration-dashboard.git + git config user.name "MetaMask Bot" + git config user.email metamaskbot@users.noreply.github.com yarn ts-migration:dashboard:deploy test-unit: