From a088ccca21ca5250c81f8d2c5117535e3a982787 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Wed, 3 Dec 2025 06:19:40 -0700 Subject: [PATCH] feat: use COPILOT_PAT for token probe if available MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Falls back to GITHUB_TOKEN if COPILOT_PAT not set. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/llm-hello-world.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/llm-hello-world.yaml b/.github/workflows/llm-hello-world.yaml index 7d4d98d5..7ff5d826 100644 --- a/.github/workflows/llm-hello-world.yaml +++ b/.github/workflows/llm-hello-world.yaml @@ -156,7 +156,7 @@ jobs: steps: - name: Probe token limits env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.COPILOT_PAT || secrets.GITHUB_TOKEN }} run: | echo "=== Token Limit Probe ===" echo "Testing progressively larger payloads to find the ceiling"