Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.

Commit 262238c

Browse files
chore: avoid 429
1 parent 4f1eb5e commit 262238c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/skill-validation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
strategy:
4747
fail-fast: false
48+
max-parallel: 2
4849
matrix: ${{ fromJson(needs.prepare.outputs.matrix) }}
4950

5051
steps:
@@ -91,7 +92,8 @@ jobs:
9192
if: always()
9293
uses: actions/upload-artifact@v4
9394
with:
94-
name: results-${{ matrix.provider }}-${{ matrix.model }}${{ matrix.skill && format('-{0}', matrix.skill) || '' }}
95+
name: results-${{ matrix.provider }}-${{ matrix.model }}-${{ matrix.skill }}
96+
name: ${{ format('results-{0}-{1}-{2}', matrix.provider, replace(matrix.model, ':', '-'), matrix.skill || 'all') }}
9597
path: tests/results/
9698
retention-days: 1
9799

0 commit comments

Comments
 (0)