Retrieval-based-Voice-Conve.../.github/workflows/genlocale.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2023-09-21 23:04:09 +08:00
name: Generate and Sync Locale
on:
push:
branches:
- main
2023-09-20 21:48:16 +08:00
- dev
jobs:
2023-07-23 02:11:25 +08:00
genlocale:
runs-on: ubuntu-latest
steps:
2023-09-21 22:47:31 +08:00
- uses: actions/checkout@master
- 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
- name: Commit back
if: ${{ !github.head_ref }}
2023-09-21 22:47:31 +08:00
id: commitback
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'
git add --all
2023-09-23 12:57:39 +08:00
git commit -m "chore(i18n): sync locale on ${{github.ref_name}}"
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}}