mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
19 lines
561 B
YAML
19 lines
561 B
YAML
name: Discord Pull Request Notification
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: joelwmale/webhook-action@master
|
|
with:
|
|
url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
body: |
|
|
{
|
|
"content": "New Pull Request: ${{ github.event.pull_request.title }}\nBy: ${{ github.event.pull_request.user.login }}\n\n${{ github.event.pull_request.html_url }}",
|
|
"avatar_url": "https://avatars.githubusercontent.com/u/193271640"
|
|
}
|