Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/sync-translations-fr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Sync Translations — French
# On merged PR, translate changed lectures into the French target repo.
# Comment \translate-resync on a merged PR to re-trigger sync.
Comment thread
mmcky marked this conversation as resolved.
name: Sync Translations (French)

on:
pull_request:
types: [closed]
paths:
- 'lectures/**/*.md'
- 'lectures/_toc.yml'
issue_comment:
types: [created]

jobs:
sync:
if: >
(github.event_name == 'pull_request' && github.event.pull_request.merged == true) ||
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '\translate-resync'))
Comment thread
mmcky marked this conversation as resolved.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v7
with:
fetch-depth: 2

- uses: QuantEcon/action-translation@v0.16.0
Comment thread
mmcky marked this conversation as resolved.
with:
mode: sync
target-repo: QuantEcon/lecture-python-programming.fr
target-language: fr
source-language: en
docs-folder: lectures
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}
github-token: ${{ secrets.QUANTECON_SERVICES_PAT }}
Loading