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