From f415179c8db26da58327919d227e26bc20dadcb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Thu, 5 Jun 2025 16:55:47 +0200 Subject: [PATCH] Remove redundant ping pong route --- appFn.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/appFn.ts b/appFn.ts index c3b3781..c8eb9cf 100644 --- a/appFn.ts +++ b/appFn.ts @@ -8,8 +8,6 @@ import { getPlaylistIdFromUrl } from './getPlaylistIdFromUrl'; type ReviewEvent = 'REQUEST_CHANGES' | 'COMMENT' | 'APPROVE'; const appFn: ApplicationFunction = (app: Probot, { getRouter }) => { - getRouter!('/ping').get('/pong', (_, res) => res.sendStatus(200)); - app.on( ['pull_request.opened', 'pull_request.synchronize'], async ({ payload, octokit, log }) => {