Auto-i18n Generator #870
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-i18n Generator | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- development | |
paths-ignore: | |
- 'auto-i18n/result.csv' | |
jobs: | |
i18n-builder: | |
if: false == contains(github.event.commits[0].message, 'Update assets/locales/ja.json') | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout development branch | |
uses: actions/checkout@v4 | |
with: | |
ref: development | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: pip | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
working-directory: auto-i18n | |
- name: Run script | |
run: python i18n_generator.py | |
working-directory: auto-i18n | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Update assets/locales/ja.json | |
title: Update translation files | |
labels: auto_merge | |
branch-suffix: 'short-commit-hash' |