skill Cosine Text Similarity (seed/mutation) v1 (score: 0.200) #399795
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Leaderboard | |
| on: | |
| schedule: | |
| - cron: '*/30 * * * *' | |
| push: | |
| branches: | |
| - 'agents/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-leaderboard: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Fetch all agent branches | |
| run: git fetch --all --prune | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Build leaderboards | |
| run: node .github/scripts/build-leaderboard.js | |
| - name: Commit if changed | |
| run: | | |
| git config user.name "Hyperspace Bot" | |
| git config user.email "bot@hyper.space" | |
| git add projects/*/LEADERBOARD.md | |
| git diff --cached --quiet || git commit -m "chore: update leaderboards [skip ci]" | |
| git push |