From a903bc6fec8709d8f3ab90b9e47e897617af5097 Mon Sep 17 00:00:00 2001 From: Lukasz Bednarowski Date: Sat, 25 Jul 2026 16:55:31 +0200 Subject: [PATCH] Fix curl command formatting in workflow Fixed your discord notifications workflow. I've noticed it wasn't working. Cheers EXAEETH --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b53eb7be4..04f0459a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,8 +19,8 @@ jobs: - name: Send to Google Apps Script (Stars only) if: github.event_name == 'watch' run: | - curl -fSs -X POST "${{ secrets.GOOGLE_SCRIPT_ENDPOINT }}" \ - -H 'Content-Type: application/json' \ + curl -fSs -X POST "${{ secrets.GOOGLE_SCRIPT_ENDPOINT }}" + -H 'Content-Type: application/json' -d '{"url":"${{ github.event.sender.html_url }}"}' - name: Set webhook based on event type id: set-webhook