From 4bb830e9ede8fe22c53f92b1858186a9bbb8ffe5 Mon Sep 17 00:00:00 2001 From: Lucid Date: Thu, 18 Dec 2025 21:10:16 -0500 Subject: [PATCH] Update .github/workflows/cron.yml --- .github/workflows/cron.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index ca475dd..2ff2653 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -12,6 +12,6 @@ jobs: - name: Daily cron job | Create new dailyStats document. run: | curl --request POST \ - --url 'bot-stats.lucids-cove.duckdns.org/api/graphql' \ - --header 'x-api-key: ${{ secrets.NEXT_PUBLIC_API_TOKEN }}' \ + --url 'https://bot-stats.lucids-cove.duckdns.org/api/graphql' \ + --header 'x-api-key: "${{ secrets.NEXT_PUBLIC_API_TOKEN }}"' \ --data '{ "query": "mutation Cron { cronJob(mutationKey: \"${{ secrets.GRAPHQL_MUTATION_KEY }}\") { commandResponses createdAt linksDeleted timesTriggered updatedAt } }" }'