From 7487af592928de506927cc6c08bd41261ec89c61 Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Wed, 27 May 2026 23:11:32 +0200 Subject: [PATCH] chore(workflow): fix self-referential workflow filename references --- .github/workflows/01.1.agentic_cron.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/01.1.agentic_cron.yml b/.github/workflows/01.1.agentic_cron.yml index a13eb209..38b55e2b 100644 --- a/.github/workflows/01.1.agentic_cron.yml +++ b/.github/workflows/01.1.agentic_cron.yml @@ -151,7 +151,7 @@ jobs: if [ $EXIT_CODE -eq 42 ]; then echo "🚨 CIRCUIT BREAKER TRIPPED: Disabling workflow to prevent quota drain." - gh workflow disable agentic_cron.yml + gh workflow disable 01.1.agentic_cron.yml exit 1 elif [ $EXIT_CODE -ne 0 ]; then exit $EXIT_CODE @@ -165,7 +165,7 @@ jobs: if [ "${{ github.event.inputs.historical_chunked }}" == "true" ] && grep -q "NEXT_CHUNK_START:" output.log; then NEXT_DATE=$(grep "NEXT_CHUNK_START:" output.log | awk '{print $2}') echo "Triggering next historical chunk until: $NEXT_DATE" - gh workflow run agentic_cron.yml -f historical_mode=true -f historical_chunked=true -f historical_until_date=$NEXT_DATE + gh workflow run 01.1.agentic_cron.yml -f historical_mode=true -f historical_chunked=true -f historical_until_date=$NEXT_DATE fi - name: Upload Visual Dashboard Artifact