Remove redundant failure-mail step from pipeline (now handled by gitea itself)
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m40s

This commit is contained in:
2026-01-23 10:16:30 +01:00
parent 12324ba60d
commit a373876d32

View File

@@ -39,17 +39,4 @@ jobs:
- name: Run tests - name: Run tests
run: cd "${{ gitea.workspace }}" && make test 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 <gitea_actions@blackforestbytes.de>
body: "Go to https://gogs.blackforestbytes.com/${{ gitea.repository }}/actions"