From 52736c6e6032ed0fe59e8c797e2674b6e1877df7 Mon Sep 17 00:00:00 2001 From: km-anthropic Date: Tue, 19 Aug 2025 16:16:12 -0700 Subject: [PATCH] bun formatting --- src/github/context.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/github/context.ts b/src/github/context.ts index 3e25ada..30936ce 100644 --- a/src/github/context.ts +++ b/src/github/context.ts @@ -45,7 +45,11 @@ const ENTITY_EVENT_NAMES = [ "pull_request_review_comment", ] as const; -const AUTOMATION_EVENT_NAMES = ["workflow_dispatch", "schedule", "workflow_run"] as const; +const AUTOMATION_EVENT_NAMES = [ + "workflow_dispatch", + "schedule", + "workflow_run", +] as const; // Derive types from constants for better maintainability type EntityEventName = (typeof ENTITY_EVENT_NAMES)[number];