feat: atualizando mensagem de webhook
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 34s

This commit is contained in:
2026-01-02 15:57:49 -05:00
parent d0e052b834
commit 9fd5fed640
2 changed files with 3 additions and 2 deletions

View File

@@ -23,9 +23,10 @@ jobs:
- name: Deploy
run: |
sleep 10
curl -X POST http://172.35.0.216:9000/api/webhooks/182007f4-06d9-48fc-ab68-885fb434765c
# LEGADO Deploy via SSH (Mantenha se precisar rodar comandos extras como migrations)
# - name: Deploy Automático via SSH
# uses: https://github.com/appleboy/ssh-action@master
# ... (seu código atual)
# ...

View File

@@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World! API Online via Swarm';
return 'Hello World! webhook';
}
}