Skip to content

Commit

Permalink
Merge pull request #4050 from nickmango/feature/pr-enqueued
Browse files Browse the repository at this point in the history
[#3846] Feature/PR enqueued
  • Loading branch information
nickmango authored Jul 14, 2023
2 parents e10e544 + b7ff088 commit 0daec65
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 0daec65

Please sign in to comment.