chore(ci): remove sync-champions.yml — superseded by update-champions.yml fan-out

This commit is contained in:
2026-04-20 21:12:59 +07:00
parent afdfc6376c
commit 7dd369a46e
-31
View File
@@ -1,31 +0,0 @@
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@v5
- name: Checkout loldle
uses: actions/checkout@v5
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