Skip to content

Stanislav tarasiuk patch 1 #5

Stanislav tarasiuk patch 1

Stanislav tarasiuk patch 1 #5

Workflow file for this run

name: Discord PR Notification
on:
pull_request:
types: [opened]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Send message to Discord
run: |
curl -H "Content-Type: application/json" \
-d '{
"content": "🚀 New PR created: '${{ github.event.pull_request.title }}'\n🔗 '${{ github.event.pull_request.html_url }}'"
}' \
${{ secrets.DISCORD_WEBHOOK }}