From 01907576bf8ae6091c1977fee8edfa70fcb063d5 Mon Sep 17 00:00:00 2001 From: peterstone2017 <12449837+YunchuWang@users.noreply.github.com> Date: Fri, 13 Mar 2026 10:22:12 -0700 Subject: [PATCH] fix: grant pull-requests write permission to auto-issue-fix pipeline The issue-fixer agent needs pull-requests: write to create PRs via gh pr create, but the workflow only had pull-requests: read. This caused the agent to fail on PR creation and time out after 20 minutes, resulting in 'Handoff file not created no PR opened' warnings. Ref: https://github.com/microsoft/durabletask-dotnet/actions/runs/23044031815 --- .github/workflows/auto-issue-fix.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-issue-fix.yaml b/.github/workflows/auto-issue-fix.yaml index 5a32e430..d0efd945 100644 --- a/.github/workflows/auto-issue-fix.yaml +++ b/.github/workflows/auto-issue-fix.yaml @@ -22,7 +22,7 @@ on: permissions: contents: write issues: write - pull-requests: read + pull-requests: write jobs: auto-issue-fix: