This commit is contained in:
Rafael Mardojai CM 2023-06-22 10:38:30 -05:00 committed by Rafael Mardojai CM
parent 91b49e0f72
commit 5d55801fd2

21
.github/workflows/CI.yml vendored Normal file
View file

@ -0,0 +1,21 @@
on:
push:
branches: [main]
name: update-cldr-langs
jobs:
update-cldr-langs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install polib
- run: python gen_cldr_langs.py
- uses: EndBug/add-and-commit@v9
with:
committer_name: GitHub Actions
committer_email: actions@github.com
message: "Update languages names translations"
add: ["cldr-langs/*.po", "cldr-langs/LINGUAS"]