From 8b63d9e38fdcb8e418a488426de0d48f15a48ba8 Mon Sep 17 00:00:00 2001 From: Lucid Date: Mon, 22 Dec 2025 15:55:35 -0500 Subject: [PATCH] fix cron --- .github/workflows/cron.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 8855360..c80dc64 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -18,4 +18,4 @@ jobs: --url 'https://bot-stats.lucids-cove.duckdns.org/api/graphql' \ --header 'x-api-key: ${{ secrets.NEXT_PUBLIC_API_TOKEN }}' \ --header 'Content-Type: application/json' \ - --data '{ "query": "mutation Cron { cronJob ( mutationKey: ${{ secrets.GRAPHQL_MUTATION_KEY }} ) { commandResponses createdAt linksDeleted timesTriggered updatedAt } }" }' \ + --data '{ "query": "mutation Cron { cronJob ( mutationKey: \"${{ secrets.GRAPHQL_MUTATION_KEY }}\" ) { commandResponses createdAt linksDeleted timesTriggered updatedAt } }" }' \