Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuy Adorno <ruyadorno@hotmail.com>2021-07-13 20:42:33 +0300
committerRuy Adorno <ruyadorno@hotmail.com>2021-07-15 20:52:29 +0300
commitc11aa536ba4808dc36ab1378ef8dfc7d9553cd26 (patch)
treec666049f7d1cf415ad81f3f6144f898ddd8be96b /.github
parent8371d7ddd94fe56e19f7ed00b62030e9cbca55e3 (diff)
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
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/create-cli-deps-pr.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/create-cli-deps-pr.yml b/.github/workflows/create-cli-deps-pr.yml
index b8508388c..a59302ebe 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"