fix(pipeline): detect conversation-assistant changes for deployment
Add pattern matching for features/conversation-assistant/ and case handler to trigger deploy-conversation-assistant.sh on changes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0de6e83bd3
commit
6a55982e1f
1 changed files with 8 additions and 0 deletions
|
|
@ -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)"
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue