From f07af135b7069f2de4eb2a61d4bc41b215f99bec Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Thu, 5 Mar 2026 13:39:55 -0500 Subject: [PATCH] feat: add email notification for build job status --- .gitea/workflows/build.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 23cce72..c652bfe 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -153,7 +153,11 @@ jobs: if: always() # Runs on success or failure uses: dawidd6/action-send-mail@v3 with: - to: ryan.kegel+gitea@gmail.com + to: ${{ secrets.MAIL_TO }} from: Gitea subject: ${{ github.repository }} - Job ${{ job.status }} - body: Build finished with status ${{ job.status }} + convert_markdown: true + html_body: | + ### Job ${{ job.status }} + + ${{ github.repository }}: [${{ github.ref }}@${{ github.sha }}](${{ github.server_url }}/${{ github.repository }}/actions)