From 886b367a8c8df26c722c901cac5372a0a798fd82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 16 Dec 2025 07:34:37 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Fix=20checkout=20GitHub=20Action?= =?UTF-8?q?=20fetch-depth=20for=20LLM=20translations,=20enable=20cron=20mo?= =?UTF-8?q?nthly=20(#14531)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/translate.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/translate.yml b/.github/workflows/translate.yml index 62e3994c4..e681762ca 100644 --- a/.github/workflows/translate.yml +++ b/.github/workflows/translate.yml @@ -1,6 +1,9 @@ name: Translate on: + schedule: + - cron: "0 5 15 * *" # Run at 05:00 on the 15 of every month + workflow_dispatch: inputs: debug_enabled: @@ -76,6 +79,8 @@ jobs: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - uses: actions/checkout@v6 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v6 with: