From 8f2e62844971e254298d6d23cf969a22d8a90685 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Fri, 6 Mar 2026 23:27:39 +0100 Subject: [PATCH] ci: Improve notification wording --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2eb7688..b3d65af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,21 +119,21 @@ jobs: if: needs.await-deploy.result == 'success' run: | curl -s \ - -H "Title: CI: Deploy succeeded" \ + -H "Title: CI: Deployment succeeded" \ -H "Priority: low" \ -H "Tags: white_check_mark" \ -H "Actions: view, Open workflow run, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ -H "Markdown: yes" \ - -d $'Commit `'"${GITHUB_SHA::7}"$'` deployed successfully.\n\n> ${{ github.event.head_commit.message }}' \ + -d $'Commit `'"${GITHUB_SHA::7}"$'` deployed successfully.\n> ${{ github.event.head_commit.message }}' \ https://ntfy.sh/splitleaf - name: Notify failure if: needs.await-deploy.result == 'failure' run: | curl -s \ - -H "Title: CI: Deploy failed" \ + -H "Title: CI: Deployment failed" \ -H "Priority: default" \ -H "Tags: rotating_light" \ -H "Actions: view, Open workflow run, ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ -H "Markdown: yes" \ - -d $'Commit `'"${GITHUB_SHA::7}"$'` failed to deploy.\n\n> ${{ github.event.head_commit.message }}' \ + -d $'Commit `'"${GITHUB_SHA::7}"$'` failed to deploy.\n> ${{ github.event.head_commit.message }}' \ https://ntfy.sh/splitleaf