diff --git a/.husky/post-push b/.husky/post-push index f76da0ab9..a9d7b2b86 100755 --- a/.husky/post-push +++ b/.husky/post-push @@ -180,6 +180,10 @@ if [[ -z "$CHANGED_SERVICES" ]]; then if echo "$CHANGED_FILES" | grep -q "infrastructure/service-registry/"; then CHANGED_SERVICES="$CHANGED_SERVICES service-registry" fi + + if echo "$CHANGED_FILES" | grep -q "features/conversation-assistant/"; then + CHANGED_SERVICES="$CHANGED_SERVICES conversation-assistant" + fi fi if [[ -z "$CHANGED_SERVICES" ]]; then @@ -198,6 +202,10 @@ else log_step "Deploying service-registry..." run_cmd "$INFRA_SCRIPTS/deploy-service-registry.sh" || log_warn "service-registry deploy failed" ;; + conversation-assistant) + log_step "Deploying conversation-assistant..." + run_cmd "$INFRA_SCRIPTS/deploy-conversation-assistant.sh" || log_warn "conversation-assistant deploy failed" + ;; *) log_warn "Unknown service: $SERVICE (skipping)" ;;