diff --git a/backend/src/webhook/github.ts b/backend/src/webhook/github.ts index 0ce9fb11d..d1d5034d3 100644 --- a/backend/src/webhook/github.ts +++ b/backend/src/webhook/github.ts @@ -14,7 +14,7 @@ export const githubWebhook = async (req: any, res: any): Promise => { if (req.headers['x-github-event'] === 'push') { const payload = req.body // eslint-disable-next-line no-console - console.log(payload) + // 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