chore(github): remove debug console log in GitHub deployment handler

This commit is contained in:
Mauricio Siu 2025-03-08 23:46:06 -06:00
parent 467bca3efb
commit 492d51337c

View File

@ -91,7 +91,6 @@ export default async function handler(
if (req.headers["x-github-event"] === "push") { if (req.headers["x-github-event"] === "push") {
try { try {
console.log("githubBody", githubBody.commits);
const branchName = githubBody?.ref?.replace("refs/heads/", ""); const branchName = githubBody?.ref?.replace("refs/heads/", "");
const repository = githubBody?.repository?.name; const repository = githubBody?.repository?.name;
const deploymentTitle = extractCommitMessage(req.headers, req.body); const deploymentTitle = extractCommitMessage(req.headers, req.body);