From c910f76c023991cd7ece2c8189c0d3d18314dfe3 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 3 Mar 2026 16:56:22 +0100 Subject: [PATCH] workflows/ci: Use markdown for notification body --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a64000e..f0a0491 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,8 @@ jobs: -H "Priority: low" \ -H "Tags: white_check_mark" \ -H "Actions: view, Open workflow run, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - -d "Commit ${{ github.sha }} succeeded." \ + -H "Markdown: yes" \ + -d "Commit `${{ github.sha }}` succeeded." \ https://ntfy.sh/splitleaf notify-failure: if: always() && contains(needs.*.result, 'failure') @@ -131,5 +132,6 @@ jobs: -H "Priority: default" \ -H "Tags: rotating_light" \ -H "Actions: view, Open workflow run, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - -d "Commit ${{ github.sha }} failed." \ + -H "Markdown: yes" \ + -d "Commit `${{ github.sha }}` failed." \ https://ntfy.sh/splitleaf