Browse Source
👷 Fix checkout GitHub Action fetch-depth for LLM translations, enable cron monthly (#14531)
pull/14534/head
Sebastián Ramírez
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
0 deletions
-
.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: |
|
|
|
|