minor linting update again

This commit is contained in:
km-anthropic
2025-07-29 14:51:02 -07:00
parent 624adc1976
commit 665606ccf4

View File

@@ -283,5 +283,7 @@ export function isEntityContext(
export function isAutomationContext( export function isAutomationContext(
context: GitHubContext, context: GitHubContext,
): context is AutomationContext { ): context is AutomationContext {
return AUTOMATION_EVENT_NAMES.includes(context.eventName as AutomationEventName); return AUTOMATION_EVENT_NAMES.includes(
context.eventName as AutomationEventName,
);
} }