Skip to content

Commit c024e90

Browse files
authoredMay 10, 2022
chore: update action secrets + bot info (#4878)
* chore: update bot account and secrets for nodejs/node updates * chore: update bot account and secrets for npm/benchmarks triggers * chore: add npm CLI robot to mailmap and exclude from AUTHORS
1 parent 5a50762 commit c024e90

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed
 

‎.github/workflows/benchmark.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
env:
2727
# gh cli uses these env vars for owner/repo/token
2828
GH_REPO: "npm/benchmarks"
29-
GITHUB_TOKEN: ${{ secrets.NPM_BENCHMARKS_TOKEN }}
29+
GITHUB_TOKEN: ${{ secrets.BENCHMARKS_DISPATCH_TOKEN }}
3030
run: |
3131
if [[ "$GITHUB_TOKEN" == "" ]]; then
3232
echo "No auth - from fork pull request, exiting"
@@ -68,7 +68,7 @@ jobs:
6868
github.event_name == 'issue_comment' &&
6969
github.event.issue.pull_request &&
7070
github.event.issue.state == 'open' &&
71-
startsWith(github.event.comment.body, '@npm-robot benchmark this')
71+
startsWith(github.event.comment.body, '@npm-cli-bot benchmark this')
7272
env:
7373
# gh cli uses this env var as the token
7474
GITHUB_TOKEN: ${{ secrets.NPM_BENCHMARKS_TOKEN }}

‎.github/workflows/create-cli-deps-pr.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ jobs:
2121
fetch-depth: 0
2222
ref: master
2323
repository: npm/node
24-
token: ${{ secrets.NPM_ROBOT_USER_PAT }}
24+
token: ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
2525
- name: Setup git user
2626
run: |
27-
git config --global user.email "npm team"
28-
git config --global user.name "ops+robot@npmjs.com"
27+
git config --global user.email "npm CLI robot"
28+
git config --global user.name "npm-cli+bot@github.com"
2929
- name: Sync upstream changes
3030
uses: aormsby/Fork-Sync-With-Upstream-action@v3.2
3131
with:
3232
target_sync_branch: master
33-
target_repo_token: ${{ secrets.NPM_ROBOT_USER_PAT }}
33+
target_repo_token: ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
3434
upstream_sync_branch: master
3535
upstream_sync_repo: nodejs/node
3636
upstream_pull_args: --ff-only
3737
- name: Run dependency updates and create PR
3838
env:
39-
GITHUB_TOKEN: ${{ secrets.NPM_ROBOT_USER_PAT }}
39+
GITHUB_TOKEN: ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
4040
run: |
4141
base_dir="$( pwd )"/
4242
dry_run="${{ github.event.inputs.dryRun }}"

‎.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Michael Hayes <michael@hayes.io> <mhayes@newrelic.com>
5656
Misha Kaletsky <misha.kaletsky@gmail.com>
5757
Nicolas Morel <marsup@gmail.com>
5858
npm team <ops+robot@npmjs.com> <ops+npm-cli@npmjs.com>
59+
npm CLI robot <npm-cli+bot@github.com>
5960
Olivier Melcher <olivier.melcher@gmail.com>
6061
Ra'Shaun Stovall <rashaunstovall@gmail.com>
6162
Rebecca Turner <me@re-becca.org> <rebecca@npmjs.com>

‎scripts/update-authors.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v "\[bot\]" | grep -v "^npm team" | perl -wnE '
3+
git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v -e "\[bot\]" -e "^npm team" -e "^npm CLI robot" | perl -wnE '
44
BEGIN {
55
say "# Authors sorted by whether or not they\x27re me";
66
}

0 commit comments

Comments
 (0)
Please sign in to comment.