From c0301b41fa7780346f4987f171d1d8ed8f2a777e Mon Sep 17 00:00:00 2001 From: Jacob Wujciak-Jens Date: Mon, 15 Jan 2024 15:37:46 +0100 Subject: [PATCH] remove contributors --- dev/archery/archery/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/archery/archery/bot.py b/dev/archery/archery/bot.py index 68b24dc08d71b..4e5104362254c 100644 --- a/dev/archery/archery/bot.py +++ b/dev/archery/archery/bot.py @@ -280,7 +280,7 @@ def handle_issue_comment(self, command, payload): # https://developer.github.com/v4/enum/commentauthorassociation/ # Checking privileges here enables the bot to respond # without relying on the handler. - allowed_roles = {'OWNER', 'MEMBER', 'CONTRIBUTOR', 'COLLABORATOR'} + allowed_roles = {'OWNER', 'MEMBER', 'COLLABORATOR'} if payload['comment']['author_association'] not in allowed_roles: raise EventError( "Only contributors can submit requests to this bot. "