huggingface leaderboard and github action to update markdown leaderbo… #1
Workflow file for this run
This file contains 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 Markdown from JSON | |
on: | |
push: | |
paths: | |
- 'leaderboard/leaderboard.json' | |
jobs: | |
update-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyyaml | |
- name: Generate Markdown | |
run: python .github/scripts/generate_leaderboard.py | |
- name: Commit and push if changed | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Action" | |
git add README.md | |
git commit -m "Update README.md from JSON data" -a || echo "No changes to commit" | |
git push |