2023-09-21 17:04:09 +02:00
|
|
|
name: Generate and Sync Locale
|
2023-04-13 15:32:08 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-09-20 15:48:16 +02:00
|
|
|
- dev
|
2023-04-12 10:53:50 +02:00
|
|
|
jobs:
|
2023-07-22 20:11:25 +02:00
|
|
|
genlocale:
|
2023-04-12 10:53:50 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-21 16:47:31 +02:00
|
|
|
- uses: actions/checkout@master
|
2023-04-12 10:53:50 +02:00
|
|
|
|
2023-04-13 08:13:29 +02:00
|
|
|
- name: Run locale generation
|
|
|
|
run: |
|
2023-08-29 08:41:19 +02:00
|
|
|
python3 i18n/scan_i18n.py
|
2023-08-29 13:34:14 +02:00
|
|
|
cd i18n
|
|
|
|
python3 locale_diff.py
|
2023-04-12 10:53:50 +02:00
|
|
|
|
|
|
|
- name: Commit back
|
|
|
|
if: ${{ !github.head_ref }}
|
2023-09-21 16:47:31 +02:00
|
|
|
id: commitback
|
2023-04-12 10:53:50 +02:00
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
git config --local user.name 'github-actions[bot]'
|
2023-07-28 06:48:12 +02:00
|
|
|
git config --local user.email 'github-actions[bot]@users.noreply.github.com'
|
2023-04-13 08:13:29 +02:00
|
|
|
git add --all
|
2023-09-23 06:57:39 +02:00
|
|
|
git commit -m "chore(i18n): sync locale on ${{github.ref_name}}"
|
2023-04-13 15:32:08 +02:00
|
|
|
|
2023-04-14 16:22:55 +02:00
|
|
|
- name: Create Pull Request
|
2023-09-21 16:47:31 +02:00
|
|
|
if: steps.commitback.outcome == 'success'
|
2023-04-14 16:22:55 +02:00
|
|
|
continue-on-error: true
|
2023-09-21 16:47:31 +02:00
|
|
|
uses: peter-evans/create-pull-request@v5
|
|
|
|
with:
|
|
|
|
delete-branch: true
|
|
|
|
body: "Automatically sync i18n translation jsons"
|
2023-09-23 06:57:39 +02:00
|
|
|
title: "chore(i18n): sync locale on ${{github.ref_name}}"
|
|
|
|
commit-message: "chore(i18n): sync locale on ${{github.ref_name}}"
|
2023-09-21 16:47:31 +02:00
|
|
|
branch: genlocale-${{github.ref_name}}
|
|
|
|
branch-suffix: short-commit-hash
|