File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 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"
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 }}
Original file line number Diff line number Diff 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 }}"
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ Michael Hayes <michael@hayes.io> <mhayes@newrelic.com>
5656Misha Kaletsky <misha.kaletsky@gmail.com>
5757Nicolas Morel <marsup@gmail.com>
5858npm team <ops+robot@npmjs.com> <ops+npm-cli@npmjs.com>
59+ npm CLI robot <npm-cli+bot@github.com>
5960Olivier Melcher <olivier.melcher@gmail.com>
6061Ra'Shaun Stovall <rashaunstovall@gmail.com>
6162Rebecca Turner <me@re-becca.org> <rebecca@npmjs.com>
Original file line number Diff line number Diff line change 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 '
44BEGIN {
55 say "# Authors sorted by whether or not they\x27re me";
66}
You can’t perform that action at this time.
0 commit comments