From ec7f503d139d515d7caf7a53176b9d50f33ca19c Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 22 Oct 2025 01:06:44 -0700 Subject: [PATCH] fix(ci): Add 'packages: read' permission to bundle-size workflow Adds the 'packages: read' permission to the 'bundle-size.yml' workflow. This is necessary to allow the job to download the package from the GitHub Packages registry to perform the size check. --- .github/workflows/bundle-size.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bundle-size.yml b/.github/workflows/bundle-size.yml index 4f7f6ea256..b7d026614d 100644 --- a/.github/workflows/bundle-size.yml +++ b/.github/workflows/bundle-size.yml @@ -12,6 +12,7 @@ on: permissions: contents: 'read' pull-requests: 'write' + packages: 'read' jobs: bundle-size: