Localisation updates from https://translatewiki.net. #7
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: Sync localization | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'i18n/**' | |
jobs: | |
sync-localization: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Sync to release branches | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
for branch in REL1_39 REL1_40 REL1_41 REL1_42 | |
do | |
git checkout $branch | |
git cherry-pick ${{ github.sha }} | |
git push | |
done |