diff --git a/apps/dokploy/pages/api/deploy/github.ts b/apps/dokploy/pages/api/deploy/github.ts index 37850bfef3..4438366f6a 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;