Files
streamyfin/.github/workflows/notification.yaml
Workflow config file is invalid. Please check your config file: yaml: line 15: could not find expected ':'

18 lines
520 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:
webhook_url: ${{ secrets.DISCORD_WEBHOOK_URL }}
body: >
{
"content": "New Pull Request: ${{ github.event.pull_request.title }}\nBy: ${{ github.event.pull_request.login}}\n\n${{ github.event.pull_request.html_url}}",
"avatar_url": "https://avatars.githubusercontent.com/u/193271640"
}