From 2559b895ec5f0042d38b60ae3336fbd1b57a3629 Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Fri, 8 Aug 2025 10:28:04 +0200 Subject: [PATCH] fix(ci): Give correct permissions to PR size compare workflow Only with `pull_request_target` does the action actually have the ability to make PR comments. --- .github/workflows/size.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/size.yml b/.github/workflows/size.yml index d24ace67f..22244a4c5 100644 --- a/.github/workflows/size.yml +++ b/.github/workflows/size.yml @@ -1,7 +1,7 @@ name: size on: # this action will error unless run in a pr context - pull_request: + pull_request_target: branches: - main