Skip to content

Ihorkuf patch 1

Ihorkuf patch 1 #1

Workflow file for this run

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