mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00

* Translations update * Run the workflow at 3am instead. --------- Co-authored-by: Velin92 <34335419+Velin92@users.noreply.github.com> Co-authored-by: Doug <douglase@element.io>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Open Translations PR
|
|
on:
|
|
schedule:
|
|
# At 03:00 on every Monday UTC
|
|
- cron: '0 3 * * 1'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
open-translations-pr:
|
|
runs-on: macos-15
|
|
# 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@v7
|
|
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
|