diff --git a/.github/workflows/flair-usage-stats.yml b/.github/workflows/flair-usage-stats.yml index 73c0428..329e6d1 100644 --- a/.github/workflows/flair-usage-stats.yml +++ b/.github/workflows/flair-usage-stats.yml @@ -12,4 +12,6 @@ jobs: env: WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} # Add your Discord webhook URL in repository secrets run: | - curl -X POST -H "Content-Type: application/json" -d '{"content":"Hello from GitHub Action!"}' $WEBHOOK_URL + curl -X POST -H "Content-Type: application/json" -d '{ + "content": "Hello from GitHub Action! This is a multiline message.\n\nHere is a new line.\nAnd another one." + }' $WEBHOOK_URL