diff --git a/.github/workflows/discord-notify.yml b/.github/workflows/discord-notify.yml index 8b464b23..ce4ee51d 100644 --- a/.github/workflows/discord-notify.yml +++ b/.github/workflows/discord-notify.yml @@ -10,12 +10,12 @@ jobs: steps: - name: Send Discord run: | - curl -X POST "${{ secrets.DISCORD_WEBHOOK }}" \ + curl -X POST "${{ secrets.DISCORD_WEBHOOK_PULLREQUEST }}" \ -H "Content-Type: application/json" \ -d '{ "embeds": [{ "title": "šŸ”” **Service:** ${{ github.repository }}", - "description": "šŸ‘¤ **Author:** ${{ github.event.pull_request.user.login }}\n🌿 **Branch:** ${{ github.event.pull_request.head.ref }} → ${{ github.event.pull_request.base.ref }}\nšŸ“¦ **Repository:** [#${{ github.event.pull_request.number }} - ${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }})", + "description": "šŸ‘¤ **Author:** ${{ github.event.pull_request.user.login }}\n🌿 **Branch:** ${{ github.event.pull_request.head.ref }} → ${{ github.event.pull_request.base.ref }}\nšŸ“¦ **Pull Request:** [#${{ github.event.pull_request.number }} - ${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }})", "color": 5814783, "timestamp": "${{ github.event.pull_request.created_at }}" }]