File tree 4 files changed +9
-8
lines changed
4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 26
26
env :
27
27
# gh cli uses these env vars for owner/repo/token
28
28
GH_REPO : " npm/benchmarks"
29
- GITHUB_TOKEN : ${{ secrets.NPM_BENCHMARKS_TOKEN }}
29
+ GITHUB_TOKEN : ${{ secrets.BENCHMARKS_DISPATCH_TOKEN }}
30
30
run : |
31
31
if [[ "$GITHUB_TOKEN" == "" ]]; then
32
32
echo "No auth - from fork pull request, exiting"
68
68
github.event_name == 'issue_comment' &&
69
69
github.event.issue.pull_request &&
70
70
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')
72
72
env :
73
73
# gh cli uses this env var as the token
74
74
GITHUB_TOKEN : ${{ secrets.NPM_BENCHMARKS_TOKEN }}
Original file line number Diff line number Diff line change @@ -21,22 +21,22 @@ jobs:
21
21
fetch-depth : 0
22
22
ref : master
23
23
repository : npm/node
24
- token : ${{ secrets.NPM_ROBOT_USER_PAT }}
24
+ token : ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
25
25
- name : Setup git user
26
26
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"
29
29
- name : Sync upstream changes
30
30
uses : aormsby/Fork-Sync-With-Upstream-action@v3.2
31
31
with :
32
32
target_sync_branch : master
33
- target_repo_token : ${{ secrets.NPM_ROBOT_USER_PAT }}
33
+ target_repo_token : ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
34
34
upstream_sync_branch : master
35
35
upstream_sync_repo : nodejs/node
36
36
upstream_pull_args : --ff-only
37
37
- name : Run dependency updates and create PR
38
38
env :
39
- GITHUB_TOKEN : ${{ secrets.NPM_ROBOT_USER_PAT }}
39
+ GITHUB_TOKEN : ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
40
40
run : |
41
41
base_dir="$( pwd )"/
42
42
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>
56
56
Misha Kaletsky <misha.kaletsky@gmail.com>
57
57
Nicolas Morel <marsup@gmail.com>
58
58
npm team <ops+robot@npmjs.com> <ops+npm-cli@npmjs.com>
59
+ npm CLI robot <npm-cli+bot@github.com>
59
60
Olivier Melcher <olivier.melcher@gmail.com>
60
61
Ra'Shaun Stovall <rashaunstovall@gmail.com>
61
62
Rebecca Turner <me@re-becca.org> <rebecca@npmjs.com>
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
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 '
4
4
BEGIN {
5
5
say "# Authors sorted by whether or not they\x27re me";
6
6
}
You can’t perform that action at this time.
0 commit comments