From d80974d93a3e7aa0b6b9efe5ab50a06c0a05ecca Mon Sep 17 00:00:00 2001 From: brandom-msft Date: Tue, 10 Mar 2026 13:56:37 -0700 Subject: [PATCH] fix: remove invalid members permission breaking redirect workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'members: read' permission key added in #586 is not a valid GitHub Actions permission, causing the workflow YAML to fail validation. This broke auto-closing of PRs (#587, #588). The repos.checkCollaborator API works with the default GITHUB_TOKEN repo access — no extra permission is needed. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/redirect-pull-requests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/redirect-pull-requests.yml b/.github/workflows/redirect-pull-requests.yml index ade8f3ee..390cf916 100644 --- a/.github/workflows/redirect-pull-requests.yml +++ b/.github/workflows/redirect-pull-requests.yml @@ -6,7 +6,6 @@ on: permissions: pull-requests: write - members: read jobs: redirect: