From 27cc633710f63b928b5f36b1e8461da150dc1d6c Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Mon, 24 Nov 2025 11:27:59 -0500 Subject: [PATCH 1/2] fix: run-id reference in bundle-compare workflow Signed-off-by: Aviv Keller --- .github/workflows/bundle-compare.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bundle-compare.yml b/.github/workflows/bundle-compare.yml index b32a848e9882a..72fc7506c8204 100644 --- a/.github/workflows/bundle-compare.yml +++ b/.github/workflows/bundle-compare.yml @@ -30,7 +30,7 @@ jobs: with: name: webpack-stats path: head-stats - run-id: ${{ github.event.workflow_run.workflow_id }} + run-id: ${{ github.event.workflow_run.id }} github-token: ${{ secrets.GITHUB_TOKEN }} - name: Get Run ID from BASE From 5ad34f43ef99c391608e89b348a81b6d877fd74e Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Mon, 24 Nov 2025 11:30:46 -0500 Subject: [PATCH 2/2] while im here might as well make this robust :-) Signed-off-by: Aviv Keller --- .github/workflows/bundle-compare.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bundle-compare.yml b/.github/workflows/bundle-compare.yml index 72fc7506c8204..12e0defd7b70c 100644 --- a/.github/workflows/bundle-compare.yml +++ b/.github/workflows/bundle-compare.yml @@ -15,6 +15,7 @@ jobs: compare: name: Compare Bundle Stats runs-on: ubuntu-latest + if: github.event.workflow_run.event == 'pull_request' steps: - name: Harden Runner