From: Sebastián Ramírez Date: Tue, 16 Dec 2025 15:34:37 +0000 (-0800) Subject: 👷 Fix checkout GitHub Action fetch-depth for LLM translations, enable cron monthly... X-Git-Tag: 0.125.0~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=886b367a8c8df26c722c901cac5372a0a798fd82;p=thirdparty%2Ffastapi%2Ffastapi.git 👷 Fix checkout GitHub Action fetch-depth for LLM translations, enable cron monthly (#14531) --- diff --git a/.github/workflows/translate.yml b/.github/workflows/translate.yml index 62e3994c4e..e681762ca3 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: