From 5e5991d0046f25ba717a243ae43a77dbf1f90bbd Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 12 Jan 2022 18:36:19 +0100 Subject: [PATCH] remove unused comment --- backend/src/webhook/github.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/backend/src/webhook/github.ts b/backend/src/webhook/github.ts index fdeb0dfaf..ebebe652c 100644 --- a/backend/src/webhook/github.ts +++ b/backend/src/webhook/github.ts @@ -9,8 +9,6 @@ export const githubWebhook = async (req: any, res: any): Promise => { // Handle push events if (req.headers['x-github-event'] === 'push') { const payload = req.body - // eslint-disable-next-line no-console - // console.log(payload) if (payload.ref === `refs/heads/${CONFIG.WEBHOOK_GITHUB_BRANCH}`) { // spawn shell and detach process to allow killing of parent process in the update script