fix: error handling in PR processing logic

This commit is contained in:
Abhinav Kumar
2025-07-09 16:45:42 +05:30
parent 50c2578cfd
commit e7268dd314

View File

@ -1,6 +1,7 @@
import ast
import json
import os
import re
from typing import List
import uvicorn
@ -87,6 +88,7 @@ def should_process_pr_logic(data) -> bool:
return False
except Exception as e:
get_logger().error(f"Failed 'should_process_pr_logic': {e}")
return False
return True
@router.post("/")