Skip to content

Add auto-generated API reference documentation #63

Add auto-generated API reference documentation

Add auto-generated API reference documentation #63

Workflow file for this run

name: Discord Notifications
on:
pull_request:
types: [closed]
jobs:
notify-pr-merged:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Post to Discord
run: |
curl -X POST "${{ secrets.DISCORD_PR_WEBHOOK }}" \
-H "Content-Type: application/json" \
-d @- << EOF
{
"embeds": [{
"title": "PR #${{ github.event.pull_request.number }} merged",
"description": "${{ github.event.pull_request.title }}",
"url": "${{ github.event.pull_request.html_url }}",
"color": 6695930
}]
}
EOF