just why not
All checks were successful
AI Codebase Quality Review / ai-codebase-review (push) Successful in 39s

This commit is contained in:
2026-01-07 21:19:46 +01:00
parent a1fe47cdf4
commit e8d28225e0
24 changed files with 6431 additions and 250 deletions

View File

@@ -1,9 +1,14 @@
"""Utility Functions Package
This package contains utility functions for webhook sanitization,
safe event dispatching, and other helper functions.
safe event dispatching, ignore patterns, and other helper functions.
"""
from utils.ignore_patterns import (
IgnorePatterns,
get_ignore_patterns,
should_ignore_file,
)
from utils.webhook_sanitizer import (
extract_minimal_context,
sanitize_webhook_data,
@@ -16,4 +21,7 @@ __all__ = [
"validate_repository_format",
"extract_minimal_context",
"validate_webhook_signature",
"IgnorePatterns",
"get_ignore_patterns",
"should_ignore_file",
]