You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
- name: Send Feature Release Notification to Discord
13
+
env:
14
+
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
15
+
ISSUE_TITLE: ${{ github.event.issue.title }}
16
+
ISSUE_BODY: ${{ github.event.issue.body }}
17
+
ISSUE_URL: ${{ github.event.issue.html_url }}
18
+
run: |
19
+
curl -H "Content-Type: application/json" \
20
+
-X POST \
21
+
-d '{
22
+
"content": "**🚀 New Feature Launched!**\n\n🎉 *${{ env.ISSUE_TITLE }}* is now available to try!\n📖 Description: ${{ env.ISSUE_BODY }}\n🔗 [Check it out here](${{ env.ISSUE_URL }})"
0 commit comments