Skip to content

Commit

Permalink
[#3846] Feature/PR enqueued
Browse files Browse the repository at this point in the history
- Process PR event with an enqueued action

Signed-off-by: Harold Wanyama <[email protected]>
  • Loading branch information
nickmango committed Jul 14, 2023
1 parent e10e544 commit b7ff088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cla-backend/cla/controllers/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit b7ff088

Please sign in to comment.