From 36ef09fbf81bbfb974d0332fa4b355707e972c1f 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:13:36 +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 102e78bf2ef5645376d9f38421e6d7e4de4411c9 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:42:29 +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 98b52a6772308974d347d8e05f1cff2d2ac7d416 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:49:39 +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: {}