Pārlūkot izejas kodu

fix(notify-discord.yml): update Discord notification to include release notes in a separate field for better clarity and organization

Mathias 1 mēnesi atpakaļ
vecāks
revīzija
3310ffe669
1 mainītis faili ar 6 papildinājumiem un 1 dzēšanām
  1. 6 1
      .github/workflows/notify-discord.yml

+ 6 - 1
.github/workflows/notify-discord.yml

@@ -85,7 +85,7 @@ jobs:
             "embeds": [
               {
                 "title": "🚀 New Release: ${{ steps.release-info.outputs.tag_name }}",
-                "description": "${{ steps.release-info.outputs.name }}\n\n${{ steps.release-info.outputs.body }}",
+                "description": "${{ steps.release-info.outputs.name }}",
                 "url": "${{ steps.release-info.outputs.html_url }}",
                 "color": 5763719,
                 "thumbnail": {
@@ -116,6 +116,11 @@ jobs:
                     "name": "📝 Files Changed",
                     "value": "• ${{ steps.changed-files.outputs.all_changed_files }}",
                     "inline": false
+                  },
+                  {
+                    "name": "📝 Release Notes",
+                    "value": "${{ steps.release-info.outputs.body }}",
+                    "inline": false
                   }
                 ],
                 "timestamp": "${{ steps.release-info.outputs.published_at }}",