From d5be96ce239787316ff1441201e908bbbb1c25fb Mon Sep 17 00:00:00 2001 From: Noah Zweben MacBook Date: Tue, 6 Jan 2026 15:27:24 -0800 Subject: [PATCH] Use pulls.createReview instead of issues.createComment --- .github/workflows/close-external-prs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/close-external-prs.yml b/.github/workflows/close-external-prs.yml index 61d9544..e828d13 100644 --- a/.github/workflows/close-external-prs.yml +++ b/.github/workflows/close-external-prs.yml @@ -6,7 +6,6 @@ on: permissions: pull-requests: write - issues: write jobs: check-membership: @@ -28,11 +27,12 @@ jobs: console.log(`${author} is an org member, allowing PR`); } catch (e) { if (e.status === 404) { - await github.rest.issues.createComment({ + await github.rest.pulls.createReview({ owner: context.repo.owner, repo: context.repo.repo, - issue_number: context.payload.pull_request.number, - body: `Thanks for your interest! This repo only accepts contributions from Anthropic team members. If you'd like to submit a plugin to the marketplace, please submit your plugin [here](https://docs.google.com/forms/d/e/1FAIpQLSdeFthxvjOXUjxg1i3KrOOkEPDJtn71XC-KjmQlxNP63xYydg/viewform).` + pull_number: context.payload.pull_request.number, + body: `Thanks for your interest! This repo only accepts contributions from Anthropic team members. If you'd like to submit a plugin to the marketplace, please submit your plugin [here](https://docs.google.com/forms/d/e/1FAIpQLSdeFthxvjOXUjxg1i3KrOOkEPDJtn71XC-KjmQlxNP63xYydg/viewform).`, + event: 'COMMENT' }); await github.rest.pulls.update({