From a373876d326a911193fe3daf9f9323eff32ffd29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Fri, 23 Jan 2026 10:16:30 +0100 Subject: [PATCH] Remove redundant failure-mail step from pipeline (now handled by gitea itself) --- .gitea/workflows/tests.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 4ed45cb..171f66e 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -39,17 +39,4 @@ jobs: - name: Run tests run: cd "${{ gitea.workspace }}" && make test - - name: Send failure mail - if: failure() - uses: dawidd6/action-send-mail@v3 - with: - server_address: smtp.fastmail.com - server_port: 465 - secure: true - username: ${{secrets.MAIL_USERNAME}} - password: ${{secrets.MAIL_PASSWORD}} - subject: Pipeline on '${{ gitea.repository }}' failed - to: ${{ steps.commiter_info.outputs.MAIL }} - from: Gitea Actions - body: "Go to https://gogs.blackforestbytes.com/${{ gitea.repository }}/actions"