User Flair Usage Stats #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: User Flair Usage Stats | |
on: | |
workflow_dispatch: | |
jobs: | |
send_discord_message: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send Discord message | |
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! This is a multiline message.\n\n```\nHere is a new line.\nAnd another one.```" | |
}' $WEBHOOK_URL |