remove console log

This commit is contained in:
Ulf Gebhardt 2022-01-12 11:00:32 +01:00
parent 68da12cfa1
commit bfda1984ec
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -14,7 +14,7 @@ export const githubWebhook = async (req: any, res: any): Promise<void> => {
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