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:
authornlf <quitlahok@gmail.com>2022-05-25 19:56:36 +0300
committerGitHub <noreply@github.com>2022-05-25 19:56:36 +0300
commit9d6f3f9c410753bf9412ddfeac6a000feccd14f0 (patch)
tree623944856815e6ac04ee8c38f1e0c2accd275c63 /.github
parent0f89e0750f2ac9b5b4794b5718d047b5286283c8 (diff)
chore(benchmarks): fix secret name in benchmark workflows (#4936)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/benchmark.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
index ea9196824..7dcba88d9 100644
--- a/.github/workflows/benchmark.yml
+++ b/.github/workflows/benchmark.yml
@@ -26,7 +26,7 @@ jobs:
env:
# gh cli uses these env vars for owner/repo/token
GH_REPO: "npm/benchmarks"
- GITHUB_TOKEN: ${{ secrets.BENCHMARKS_DISPATCH_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.BENCHMARK_DISPATCH_TOKEN }}
run: |
if [[ "$GITHUB_TOKEN" == "" ]]; then
echo "No auth - from fork pull request, exiting"
@@ -71,7 +71,7 @@ jobs:
startsWith(github.event.comment.body, '@npm-cli-bot benchmark this')
env:
# gh cli uses this env var as the token
- GITHUB_TOKEN: ${{ secrets.NPM_BENCHMARKS_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.BENCHMARK_DISPATCH_TOKEN }}
run: |
OWNER="${{ github.event.repository.owner.login }}"
REPO="${{ github.event.repository.name }}"