6 lines
233 B
Python
6 lines
233 B
Python
from kab_ingestion.models import IngestionRequest
|
|
|
|
|
|
def github_trigger(locator: str, requested_by: str = "github-webhook") -> IngestionRequest:
|
|
return IngestionRequest(source="github", locator=locator, requested_by=requested_by)
|