From 610a4cc3ac07fa7850a1e47e069d062ac4351127 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Oct 2025 10:54:08 -0700 Subject: [PATCH] Fix workflow to include permissions block with write access for issues and PRs (#4275) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jiaren-wu <190862939+jiaren-wu@users.noreply.github.com> --- .github/workflows/global-run-first-interaction.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/global-run-first-interaction.yaml b/.github/workflows/global-run-first-interaction.yaml index bb5d5db6..49670c53 100644 --- a/.github/workflows/global-run-first-interaction.yaml +++ b/.github/workflows/global-run-first-interaction.yaml @@ -1,5 +1,10 @@ name: First Interaction +permissions: + contents: read + issues: write + pull-requests: write + on: issues: types: [opened]