1
0
mirror of synced 2024-11-28 09:21:04 +01:00
Retrieval-based-Voice-Conve.../.github/workflows/genlocale.yml

40 lines
1.2 KiB
YAML
Raw Normal View History

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