From 8207a5f1286aa160019809ba253887f476544701 Mon Sep 17 00:00:00 2001 From: km-anthropic Date: Tue, 29 Jul 2025 14:40:48 -0700 Subject: [PATCH] bun format --- src/github/context.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/github/context.ts b/src/github/context.ts index bb36712..1301359 100644 --- a/src/github/context.ts +++ b/src/github/context.ts @@ -49,8 +49,8 @@ const ENTITY_EVENT_NAMES = [ const AUTOMATION_EVENT_NAMES = ["workflow_dispatch", "schedule"] as const; // Derive types from constants for better maintainability -type EntityEventName = typeof ENTITY_EVENT_NAMES[number]; -type AutomationEventName = typeof AUTOMATION_EVENT_NAMES[number]; +type EntityEventName = (typeof ENTITY_EVENT_NAMES)[number]; +type AutomationEventName = (typeof AUTOMATION_EVENT_NAMES)[number]; // Common fields shared by all context types type BaseContext = {