mirror of
https://github.com/dialect-app/po.git
synced 2025-06-19 04:36:25 +00:00
Add CI
This commit is contained in:
parent
91b49e0f72
commit
a9f798a18e
1 changed files with 21 additions and 0 deletions
21
.github/workflows/CI.yml
vendored
Normal file
21
.github/workflows/CI.yml
vendored
Normal 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"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue