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