fix: wrong format

This commit is contained in:
Fredrik Burmester
2025-01-01 18:26:53 +01:00
parent 344e0932dc
commit 6aa2e00d93

View File

@@ -5,14 +5,14 @@ on:
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"
}
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"
}