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

33 lines
812 B
YAML
Raw Normal View History

name: genlocale
on:
push:
branches:
- main
jobs:
2023-07-23 02:11:25 +08:00
genlocale:
name: genlocale
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@master
- name: Run locale generation
run: |
python3 extract_locale.py
2023-07-24 14:19:53 +08:00
cd lib/i18n && python3 locale_diff.py
- name: Commit back
if: ${{ !github.head_ref }}
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
git commit -m "🎨 同步 locale"
2023-04-14 22:22:55 +08:00
- name: Create Pull Request
if: ${{ !github.head_ref }}
2023-04-14 22:22:55 +08:00
continue-on-error: true
uses: peter-evans/create-pull-request@v4