Skip to content

add leaderboard.yml

add leaderboard.yml #1

Workflow file for this run

name: Leaderboard
on:
push:
branches: [ "main" ]
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Leaderboard in README.md
run: ./leaderboard-replace.sh
- name: Commit and Push changes
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git commit -am "README.md: update leaderboard" \
&& git push \
|| true