fix: reduce matrix concurrency and activate Identity B fallback to mitigate 429s

This commit is contained in:
Nubenetes Bot
2026-05-20 16:09:14 +02:00
parent ca55f38c4b
commit a33c116ca0

View File

@@ -47,7 +47,7 @@ jobs:
strategy:
matrix:
shard: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63]
max-parallel: 3
max-parallel: 2
fail-fast: false
steps:
- name: Repository Synchronization
@@ -72,7 +72,7 @@ jobs:
GEMINI_API_KEY_1: ${{ secrets.GEMINI_API_KEY_1 }}
GEMINI_API_KEY_2: ${{ secrets.GEMINI_API_KEY_2 }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACTIVATE_BACKUP_KEY: ${{ github.event.inputs.activate_backup_key || 'false' }}
ACTIVATE_BACKUP_KEY: ${{ github.event_name == 'push' && 'true' || github.event.inputs.activate_backup_key || 'false' }}
FORCE_FULL_CHECK: ${{ github.event.inputs.force_full_check || 'false' }}
FORCE_EVAL: ${{ github.event.inputs.force_reevaluate || 'false' }}
ENRICH_METADATA: ${{ github.event.inputs.enrich_metadata || 'false' }}