From 26f55209adb261e9b75bac4f4b8d8c79b412e5f2 Mon Sep 17 00:00:00 2001 From: Riley Kohler Date: Thu, 27 Jun 2024 16:04:42 -0400 Subject: [PATCH] fix: add proxy import to webhook entrypoint --- src/bot/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bot/index.ts b/src/bot/index.ts index af5a7eb..4c7a84f 100644 --- a/src/bot/index.ts +++ b/src/bot/index.ts @@ -4,6 +4,8 @@ import { serverTrpc } from '../utils/trpc' import { appOctokit, generateAppAccessToken } from './octokit' import { createAllPushProtection, createDefaultBranchProtection } from './rules' +import '../utils/proxy' + type CustomProperties = Record const botLogger = logger.getSubLogger({ name: 'bot' })