From b7ff0889470665037b599869fea64013eff81ab9 Mon Sep 17 00:00:00 2001 From: Harold Wanyama Date: Fri, 14 Jul 2023 16:24:11 +0300 Subject: [PATCH] [#3846] Feature/PR enqueued - Process PR event with an enqueued action Signed-off-by: Harold Wanyama --- cla-backend/cla/controllers/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cla-backend/cla/controllers/github.py b/cla-backend/cla/controllers/github.py index eb6b76298..fa498066b 100644 --- a/cla-backend/cla/controllers/github.py +++ b/cla-backend/cla/controllers/github.py @@ -354,7 +354,7 @@ def handle_pull_request_event(action: str, body: dict): cla.log.debug(f'{func_name} - processing github pull_request activity callback...') # New PR opened - if action == 'opened' or action == 'reopened' or action == 'synchronize': + if action == 'opened' or action == 'reopened' or action == 'synchronize' or action == 'enqueued': cla.log.debug(f'{func_name} - processing github pull_request activity for action: {action}') # Copied from repository_service.py service = cla.utils.get_repository_service('github')