Skip to content

skill Cosine Text Similarity (seed/mutation) v1 (score: 0.200) #399795

skill Cosine Text Similarity (seed/mutation) v1 (score: 0.200)

skill Cosine Text Similarity (seed/mutation) v1 (score: 0.200) #399795

Workflow file for this run

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