feat: use COPILOT_PAT for token probe if available
Falls back to GITHUB_TOKEN if COPILOT_PAT not set. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7b120a1921
commit
a088ccca21
|
|
@ -156,7 +156,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Probe token limits
|
- name: Probe token limits
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.COPILOT_PAT || secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
echo "=== Token Limit Probe ==="
|
echo "=== Token Limit Probe ==="
|
||||||
echo "Testing progressively larger payloads to find the ceiling"
|
echo "Testing progressively larger payloads to find the ceiling"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue