diff --git a/apps/dokploy/pages/api/deploy/[refreshToken].ts b/apps/dokploy/pages/api/deploy/[refreshToken].ts index f0674f0d7..70dcd1d14 100644 --- a/apps/dokploy/pages/api/deploy/[refreshToken].ts +++ b/apps/dokploy/pages/api/deploy/[refreshToken].ts @@ -272,6 +272,12 @@ export const extractCommitMessage = (headers: any, body: any) => { : "NEW COMMIT"; } + if (headers["user-agent"]?.includes("Go-http-client")) { + if (body.push_data && body.repository) { + return `Docker image pushed: ${body.repository.repo_name}:${body.push_data.tag} by ${body.push_data.pusher}`; + } + } + return "NEW CHANGES"; };