2023-04-12 10:53:50 +02:00
|
|
|
name: genlocale
|
2023-04-13 15:32:08 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-04-12 10:53:50 +02:00
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: genlocale
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out
|
|
|
|
uses: actions/checkout@master
|
|
|
|
|
2023-04-13 08:13:29 +02:00
|
|
|
- name: Run locale generation
|
|
|
|
run: |
|
|
|
|
python3 extract_locale.py
|
2023-04-16 08:29:01 +02:00
|
|
|
cd i18n && python3 locale_diff.py
|
2023-04-12 10:53:50 +02:00
|
|
|
|
|
|
|
- name: Commit back
|
|
|
|
if: ${{ !github.head_ref }}
|
|
|
|
continue-on-error: true
|
|
|
|
run: |
|
|
|
|
git config --local user.name 'github-actions[bot]'
|
|
|
|
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
|
2023-04-13 08:13:29 +02:00
|
|
|
git add --all
|
|
|
|
git commit -m "🎨 同步 locale"
|
2023-04-13 15:32:08 +02:00
|
|
|
|
2023-04-14 16:22:55 +02:00
|
|
|
- name: Create Pull Request
|
2023-04-13 15:32:08 +02:00
|
|
|
if: ${{ !github.head_ref }}
|
2023-04-14 16:22:55 +02:00
|
|
|
continue-on-error: true
|
|
|
|
uses: peter-evans/create-pull-request@v4
|
|
|
|
|