From 9a9c988f38e0388fc5dbc7f842358e1981ff95da Mon Sep 17 00:00:00 2001 From: Misaka_Company Date: Wed, 4 Feb 2026 11:21:36 +0800 Subject: [PATCH] style: improve NTFY notification message formatting Co-Authored-By: Claude Sonnet 4.5 --- .gitea/workflows/notify.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/notify.yml b/.gitea/workflows/notify.yml index fe2b128..676bb18 100644 --- a/.gitea/workflows/notify.yml +++ b/.gitea/workflows/notify.yml @@ -7,10 +7,12 @@ jobs: steps: - name: Send to NTFY run: | - curl -d "🚀 AutoBOM: New commit ${{ github.sha }}" \ - -d "📝 Message: ${{ github.event.head_commit.message }}" \ - -d "👤 Author: ${{ github.actor }}" \ - -d "🌿 Branch: ${{ github.ref_name }}" \ + curl -d "🚀 AutoBOM + New commit ${{ github.sha }} + 📝 Message + ${{ github.event.head_commit.message }} + 👤 Author: ${{ github.actor }} + 🌿 Branch: ${{ github.ref_name }}" \ -H "Title: Git Push Notification" \ -H "Priority: default" \ -H "Tags: gitea,autobom,push" \