We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6013bcf commit 9aa827fCopy full SHA for 9aa827f
.github/workflows/build-and-release.yml
@@ -127,6 +127,9 @@ jobs:
127
uses: tsickert/discord-webhook@v7.0.0
128
with:
129
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
130
- embed-title: "🎉 New update on `master` branch: ${{ fromJson(steps.get_pr_data.outputs.result).title }}"
131
- embed-description: "${{ fromJson(steps.get_pr_data.outputs.result).body }}"
132
- embed-url: "${{ fromJson(steps.get_pr_data.outputs.result).html_url }}"
+ embed-title: |
+ 🎉 New update on `master` branch: ${{ fromJson(steps.get_pr_data.outputs.result).title }}
+ embed-description: |
133
+ ${{ fromJson(steps.get_pr_data.outputs.result).body }}
134
+ embed-url: ${{ fromJson(steps.get_pr_data.outputs.result).html_url }}
135
+
0 commit comments