From c11aa536ba4808dc36ab1378ef8dfc7d9553cd26 Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Tue, 13 Jul 2021 13:42:33 -0400 Subject: [PATCH] chore: use better name on nodejs commits Currently, the name: `npm-robot` is being used in nodejs changelogs as the atttribution author name for npm-update commits. This makes it so that entries in the changelog referring to our updates reads like: ``` upgrade npm to 7.18.1 (npm-robot) #39065 ``` This change makes it so that the name used in commits is `npm team`, this way the changelogs entry should read instead as: ``` upgrade npm to 7.18.1 (npm team) #39065 ``` Ref: https://nodejs.org/en/blog/release/v16.4.0/ PR-URL: https://github.com/npm/cli/pull/3541 Credit: @ruyadorno Close: #3541 Reviewed-by: @wraithgar, @targos, @BethGriggs --- .github/workflows/create-cli-deps-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-cli-deps-pr.yml b/.github/workflows/create-cli-deps-pr.yml index b8508388ce6ab..a59302ebeb0ac 100644 --- a/.github/workflows/create-cli-deps-pr.yml +++ b/.github/workflows/create-cli-deps-pr.yml @@ -52,7 +52,7 @@ jobs: base_branch="v14.x-staging" fi - git config user.name "npm-robot" + git config user.name "npm team" git config user.email "ops+robot@npmjs.com" git checkout -b "npm-$npm_tag"