From c99743131da4242d0d506e5ff34e1f92ec82a88a Mon Sep 17 00:00:00 2001 From: Lucid Date: Fri, 19 Dec 2025 20:04:49 -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 45508e2..2bce333 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -1,7 +1,7 @@ name: Daily Cron (Make New DailyStats Document) on: schedule: - - cron: "0 0 * * *" + - cron: "4 0 * * *" jobs: cron: runs-on: ubuntu-24.04 @@ -15,4 +15,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 } }" }' \