diff options
author | Luca Casonato <hello@lcas.dev> | 2022-01-02 13:41:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 13:41:59 +0100 |
commit | 6ab46b559c7668071c37decfc3fe304e4fb034cb (patch) | |
tree | ca4667cea18fe0cd25410452ba027bc61251233f | |
parent | 2e72893fa2da175f5949c0c5c6760d404fa65a23 (diff) |
build: hardcode WPT_FYI_USER (#13262)
GHA keeps redacting all occurrences of the word "deno" out of logs
because this is our wpt.fyi username. This is rather annoying, so I am
just hardcoding the username in the CI script.
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/wpt_epoch.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c500a297..6e4dd3d0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -517,7 +517,7 @@ jobs: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/') env: - WPT_FYI_USER: ${{ secrets.WPT_FYI_USER }} + WPT_FYI_USER: deno WPT_FYI_PW: ${{ secrets.WPT_FYI_PW }} GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }} run: | diff --git a/.github/workflows/wpt_epoch.yml b/.github/workflows/wpt_epoch.yml index 9ad0c2c2f..bf1a05feb 100644 --- a/.github/workflows/wpt_epoch.yml +++ b/.github/workflows/wpt_epoch.yml @@ -72,7 +72,7 @@ jobs: - name: Upload wpt results to wpt.fyi env: - WPT_FYI_USER: ${{ secrets.WPT_FYI_USER }} + WPT_FYI_USER: deno WPT_FYI_PW: ${{ secrets.WPT_FYI_PW }} run: | deno run -A ./tools/upload_wptfyi.js wptreport.json --from-raw-file |