From b588dcf77a2a146712ee76cc3775beb2abbe68d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Thu, 9 Apr 2026 15:15:33 +0200 Subject: [PATCH 1/3] feat: add translation sync workflow Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/translation-sync.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/translation-sync.yml diff --git a/.github/workflows/translation-sync.yml b/.github/workflows/translation-sync.yml new file mode 100644 index 00000000..3c9c348f --- /dev/null +++ b/.github/workflows/translation-sync.yml @@ -0,0 +1,17 @@ +name: Translation Sync + +on: + schedule: + - cron: '0 2 * * 1' + workflow_dispatch: + +jobs: + sync: + uses: owncloud/reusable-workflows/.github/workflows/translation-sync.yml@main + with: + mode: old + sub_path: l10n + secrets: + TX_TOKEN: ${{ secrets.TX_TOKEN }} + TRANSLATION_APP_ID: ${{ secrets.TRANSLATION_APP_ID }} + TRANSLATION_APP_PRIVATE_KEY: ${{ secrets.TRANSLATION_APP_PRIVATE_KEY }} From 290b1534f808fca4aaac1c05906a93d7e19be35c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Thu, 9 Apr 2026 16:43:13 +0200 Subject: [PATCH 2/3] chore: restrict GITHUB_TOKEN to no permissions Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/translation-sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/translation-sync.yml b/.github/workflows/translation-sync.yml index 3c9c348f..ff46c64f 100644 --- a/.github/workflows/translation-sync.yml +++ b/.github/workflows/translation-sync.yml @@ -5,6 +5,8 @@ on: - cron: '0 2 * * 1' workflow_dispatch: +permissions: {} + jobs: sync: uses: owncloud/reusable-workflows/.github/workflows/translation-sync.yml@main From b5c8e8bab4db83d83b87e11db5c3bea0f34f97f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Thu, 9 Apr 2026 16:50:19 +0200 Subject: [PATCH 3/3] chore: change translation sync schedule to daily Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/translation-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/translation-sync.yml b/.github/workflows/translation-sync.yml index ff46c64f..3268414d 100644 --- a/.github/workflows/translation-sync.yml +++ b/.github/workflows/translation-sync.yml @@ -2,7 +2,7 @@ name: Translation Sync on: schedule: - - cron: '0 2 * * 1' + - cron: '0 2 * * *' workflow_dispatch: permissions: {}