From 225c578c77c07dbd4590e3c60098e63eebba40f2 Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Sun, 19 Feb 2023 16:23:40 +0100 Subject: [PATCH] tools: update wpt.fyi used daily checkout ref PR-URL: https://github.com/nodejs/node/pull/46730 Reviewed-By: Yagiz Nizipli Reviewed-By: Antoine du Hamel --- .github/workflows/daily-wpt-fyi.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily-wpt-fyi.yml b/.github/workflows/daily-wpt-fyi.yml index 0240dd6d404814..ffde97c61ca835 100644 --- a/.github/workflows/daily-wpt-fyi.yml +++ b/.github/workflows/daily-wpt-fyi.yml @@ -54,7 +54,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | SHORT_SHA=$(node -p 'process.version.split(/-nightly\d{8}/)[1]') - echo "NIGHTLY_REF=$(gh api /repos/nodejs/node/commits/$SHORT_SHA | jq -r '.sha')" >> $GITHUB_ENV + echo "NIGHTLY_REF=$(gh api /repos/nodejs/node/commits/$SHORT_SHA --jq '.sha')" >> $GITHUB_ENV - name: Checkout ${{ steps.setup-node.outputs.node-version }} uses: actions/checkout@v3 with: @@ -62,6 +62,10 @@ jobs: ref: ${{ env.NIGHTLY_REF || steps.setup-node.outputs.node-version }} - name: Set env.NODE run: echo "NODE=$(which node)" >> $GITHUB_ENV + - name: Set env.WPT_DAILY_REF + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: echo "WPT_DAILY_REF=$(gh api /repos/web-platform-tests/wpt/branches/epochs/daily --jq '.commit.sha')" >> $GITHUB_ENV # replace checked out WPT with the synchronized branch - name: Remove stale WPT @@ -74,7 +78,7 @@ jobs: persist-credentials: false path: test/fixtures/wpt clean: false - ref: epochs/daily + ref: ${{ env.WPT_DAILY_REF }} - name: Set env.WPT_REVISION run: echo "WPT_REVISION=$(git rev-parse HEAD)" >> $GITHUB_ENV working-directory: test/fixtures/wpt