This is an automated email from the ASF dual-hosted git repository.

hubcio pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git


The following commit(s) were added to refs/heads/master by this push:
     new d2e26067e ci: allow org members to drive PR triage commands (#3255)
d2e26067e is described below

commit d2e26067eea7dba54672441aa68fb4e75d174659
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Thu May 14 13:47:48 2026 +0200

    ci: allow org members to drive PR triage commands (#3255)
---
 .github/workflows/pr-triage.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/pr-triage.yml b/.github/workflows/pr-triage.yml
index 2229ae791..309f438f8 100644
--- a/.github/workflows/pr-triage.yml
+++ b/.github/workflows/pr-triage.yml
@@ -28,8 +28,8 @@ name: PR Triage
 #   /author                        — flip state to S-waiting-on-author
 #
 # Auth gate:
-#   /request-review, /ready  -> repo COLLABORATOR/OWNER, or PR author
-#   /author                  -> repo COLLABORATOR/OWNER only
+#   /request-review, /ready  -> org MEMBER / repo COLLABORATOR/OWNER, or PR 
author
+#   /author                  -> org MEMBER / repo COLLABORATOR/OWNER only
 #
 # Lifecycle (pull_request_target):
 #   opened (non-draft)     -> add S-waiting-on-review (only if no S-* present)
@@ -91,7 +91,7 @@ jobs:
           script: |
             const LABEL_REVIEW = 'S-waiting-on-review';
             const LABEL_AUTHOR = 'S-waiting-on-author';
-            const COMMITTER_ASSOCS = new Set(['COLLABORATOR', 'OWNER']);
+            const COMMITTER_ASSOCS = new Set(['MEMBER', 'COLLABORATOR', 
'OWNER']);
             const prNumber = Number(process.env.PR_NUMBER);
 
             const removeLabelIfPresent = async (name) => {

Reply via email to