From 9934346d8c5a94de5e932aa303ced9e71f4be71e Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 27 Jan 2026 21:46:54 -0600 Subject: [PATCH] fix(application): update commit info extraction to include appName and serverId --- packages/server/src/services/application.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/server/src/services/application.ts b/packages/server/src/services/application.ts index 335ffbf77..24a5ae79c 100644 --- a/packages/server/src/services/application.ts +++ b/packages/server/src/services/application.ts @@ -253,7 +253,11 @@ export const deployApplication = async ({ } finally { // Only extract commit info for non-docker sources if (application.sourceType !== "docker") { - const commitInfo = await getGitCommitInfo(application); + const commitInfo = await getGitCommitInfo({ + appName: application.appName, + type: "application", + serverId: serverId, + }); if (commitInfo) { await updateDeployment(deployment.deploymentId, {