From 8c64862a81cbe1e4b332c581058da20729de4ab3 Mon Sep 17 00:00:00 2001 From: David Finkel Date: Mon, 5 Jan 2026 15:01:42 -0500 Subject: [PATCH] actions: add pull_request flow for fork PRs `pull_request_target` was problematic for permissions reasons, and we've since locked down the permissions on this repo a bit. Add `pull_request` so we can trigger workflows on third-party fork PRs. --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f616c98e..964239f9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,5 +1,5 @@ name: Go -on: [push, workflow_dispatch] +on: [push, workflow_dispatch, pull_request] permissions: contents: read jobs: