From e554adc37624a5f9acecb52ce69e81f630b1eba4 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 10 Mar 2026 02:09:16 -0600 Subject: [PATCH] feat: add support for 'labeled' action in GitHub deployment handler --- apps/dokploy/pages/api/deploy/github.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index 37850bfef..4438366f6 100644 --- a/apps/dokploy/pages/api/deploy/github.ts +++ b/apps/dokploy/pages/api/deploy/github.ts @@ -358,7 +358,8 @@ export default async function handler( const shouldCreateDeployment = action === "opened" || action === "synchronize" || - action === "reopened"; + action === "reopened" || + action === "labeled"; const repository = githubBody?.repository?.name; const deploymentHash = githubBody?.pull_request?.head?.sha;