Open Translations PR #102
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: Open Translations PR | |
on: | |
schedule: | |
# At 00:00 on every Monday UTC | |
- cron: '0 0 * * 1' | |
workflow_dispatch: | |
jobs: | |
open-translations-pr: | |
runs-on: macos-14 | |
# Skip in forks | |
if: github.repository == 'element-hq/element-x-ios' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup environment | |
run: | |
source ci_scripts/ci_common.sh && setup_github_actions_translations_environment | |
- name: Download All Translations | |
run: swift run tools download-strings --all-languages | |
- name: Verify Translations | |
run: swift run tools locheck | |
- name: SAS Translations | |
run: swift run tools generate-sas | |
- name: Create PR for Translations | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.ELEMENT_BOT_TOKEN }} | |
commit-message: Translations update | |
title: Translations update | |
body: | | |
- Translations update | |
labels: pr-i18n | |
branch: translations/update | |
base: develop | |
add-paths: | | |
*.strings | |
*.stringsdict | |
**/Strings.swift |