From 48814028f1697f30f0b525cc22fbb7e69aa3bcff 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:16:37 +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 0000000..3c9c348 --- /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 2dab146d5d07beae33c68061fb29fe53095ebabb 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:35 +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 3c9c348..ff46c64 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 5eefa1618d8cbc04a8bc66b60ec717aad3c112ad 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:40 +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 ff46c64..3268414 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: {}