From 9fd5fed6408997289a6f12cf2aae2598d98332e3 Mon Sep 17 00:00:00 2001 From: simplifique Date: Fri, 2 Jan 2026 15:57:49 -0500 Subject: [PATCH] feat: atualizando mensagem de webhook --- .gitea/workflows/deploy-api.yaml | 3 ++- src/app.service.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-api.yaml b/.gitea/workflows/deploy-api.yaml index 13d84a4..c00aea6 100644 --- a/.gitea/workflows/deploy-api.yaml +++ b/.gitea/workflows/deploy-api.yaml @@ -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) \ No newline at end of file + # ... \ No newline at end of file diff --git a/src/app.service.ts b/src/app.service.ts index 123a9e4..4c79c04 100644 --- a/src/app.service.ts +++ b/src/app.service.ts @@ -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'; } }