From 75f7136ba3d63de1c5fbe8cb95746eed493d0fed Mon Sep 17 00:00:00 2001 From: Vezpi Date: Wed, 11 Jun 2025 09:30:08 +0000 Subject: [PATCH] change: remove action when successful --- .gitea/workflows/deployment.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deployment.yml b/.gitea/workflows/deployment.yml index a6ff244..e2e64c1 100644 --- a/.gitea/workflows/deployment.yml +++ b/.gitea/workflows/deployment.yml @@ -222,15 +222,14 @@ jobs: ]]; then curl -H "Priority: min" \ -H "Tags: white_check_mark" \ - -H "Actions: view, View Run, ${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_number }}" \ - -d "Blog workflow completed successfully!" \ + -d "Blog workflow completed successfully." \ -u ${NTFY_TOKEN} \ ${NTFY_URL}/${NTFY_TOPIC} else curl -H "Priority: high" \ -H "Tags: x" \ -H "Actions: view, View Run, ${{ gitea.server_url }}/${{ gitea.repository }}/actions/runs/${{ gitea.run_number }}" \ - -d "Blog workflow failed somewhere in the pipeline." \ + -d "Blog workflow failed!" \ -u ${NTFY_TOKEN} \ ${NTFY_URL}/${NTFY_TOPIC} fi