Sync Localazy #12
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 Localazy | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 00:00 on every Monday UTC | |
- cron: '0 0 * * 1' | |
jobs: | |
sync-localazy: | |
runs-on: ubuntu-latest | |
# Skip in forks | |
if: ${{ github.repository == 'element-hq/element-x-android' && ('pull_request' != github.event_name || github.event.pull_request.head.repo.full_name == github.repository) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' # See 'Supported distributions' for available options | |
java-version: '21' | |
- name: Configure gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/develop' }} | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Setup Localazy | |
run: | | |
curl -sS https://dist.localazy.com/debian/pubkey.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/localazy.gpg | |
echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/localazy.gpg] https://maven.localazy.com/repository/apt/ stable main" | sudo tee /etc/apt/sources.list.d/localazy.list | |
sudo apt-get update && sudo apt-get install localazy | |
- name: Run Localazy script | |
run: | | |
./tools/localazy/downloadStrings.sh --all | |
./tools/localazy/importSupportedLocalesFromLocalazy.py | |
./tools/test/generateAllScreenshots.py | |
- name: Create Pull Request for Strings | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | |
commit-message: Sync Strings from Localazy | |
title: Sync Strings | |
body: | | |
- Update Strings from Localazy | |
branch: sync-localazy | |
base: develop | |
labels: PR-i18n |