Notify Discord on Labeled Discussion #16
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: Notify Discord on Labeled Discussion | |
on: | |
discussion: | |
types: [created] | |
jobs: | |
notify-discord: | |
runs-on: ubuntu-latest | |
if: contains(github.event.discussion.body, 'Demo Link (Optional)') | |
steps: | |
- name: Send Notification to Discord | |
run: | | |
curl -X POST -H "Content-Type: application/json" \ | |
-d "{\"content\": \"A new Show and Tell discussion has been created: ${{ github.event.discussion.html_url }}\"}" \ | |
${{ secrets.DISCORD_WEBHOOK_URL }} | |
env: | |
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }} |