diff --git a/dev/archery/archery/bot.py b/dev/archery/archery/bot.py index 468b6246577..6a9b78cf160 100644 --- a/dev/archery/archery/bot.py +++ b/dev/archery/archery/bot.py @@ -143,7 +143,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'} + allowed_roles = {'OWNER', 'MEMBER', 'CONTRIBUTOR', 'COLLABORATOR'} if payload['comment']['author_association'] not in allowed_roles: raise EventError( "Only contributors can submit requests to this bot. "