feat: add champions.json sync workflow to loldle repo

Track champions.json in git and add GitHub Action that copies it
to tiennm99/loldle/public/champions.json on push.
This commit is contained in:
2026-04-04 18:41:47 +07:00
parent cfa664f217
commit 1e7a05e591
3 changed files with 3473 additions and 3 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Sync champions.json to loldle
on:
push:
branches: [main]
paths: [champions.json]
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout loldle-data
uses: actions/checkout@v4
- name: Checkout loldle
uses: actions/checkout@v4
with:
repository: tiennm99/loldle
token: ${{ secrets.LOLDLE_PAT }}
path: loldle
- name: Copy and commit
run: |
cp champions.json loldle/public/champions.json
cd loldle
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add public/champions.json
git diff --cached --quiet && echo "No changes" && exit 0
git commit -m "chore: update champions.json from loldle-data"
git push