From ec3ed054fdc706016015a418422bdceb2872b928 Mon Sep 17 00:00:00 2001 From: Remy Moll Date: Tue, 14 Oct 2025 16:02:27 +0200 Subject: [PATCH] try using the gitea cli instead --- .../workflows/backend_build-deploy-stg.yaml | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/backend_build-deploy-stg.yaml b/.gitea/workflows/backend_build-deploy-stg.yaml index c967b73..b6a51c2 100644 --- a/.gitea/workflows/backend_build-deploy-stg.yaml +++ b/.gitea/workflows/backend_build-deploy-stg.yaml @@ -21,12 +21,16 @@ jobs: runs-on: ubuntu-latest name: Add a comment to the PR to notify about the deployment steps: - - name: Notify about deployment - uses: https://github.com/marocchino/sticky-pull-request-comment@v2 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - header: backend deployed to production - message: | - The backend has been deployed to staging with url . Check the deployment status in ArgoCD: + - name: Download gitea client + run: | + curl -sSL -o tea https://dl.gitea.com/tea/0.11.0/tea-0.11.0-linux-amd64 + chmod +x tea + - name: Post comment + run: | + ./tea pr comment ${{ github.event.number }} --body "The backend has been deployed to staging with url https://pr-${{ github.event.number }}.anyway-stg.anydev.info. Check the deployment status in ArgoCD: - [![App Status](https://argocd.kluster.moll.re/api/badge?name=anydev-anyway-backend-stg-pr-{{ github.event.number }}&revision=true&showAppName=true)](https://argocd.kluster.moll.re/applications/anydev-anyway-backend-stg-pr-{{ github.event.number }}) + [![App Status](https://argocd.kluster.moll.re/api/badge?name=anydev-anyway-backend-stg-pr-${{ github.event.number }}&revision=true&showAppName=true)](https://argocd.kluster.moll.re/applications/anydev-anyway-backend-stg-pr-${{ github.event.number }})" + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_BASE_URL: ${{ secrets.GITEA_BASE_URL }} + GITEA_REPO: ${{ secrets.GITEA_REPO }}