Fix broken raw GitHub URLs for CSV data files #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Sync Translations — Simplified Chinese | |
| # On merged PR, translate changed lectures into the zh-cn target repo. | |
| # Comment \translate-resync on a merged PR to re-trigger sync. | |
| name: Sync Translations (Simplified Chinese) | |
| 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')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 2 | |
| - uses: QuantEcon/action-translation@v0.12.4 | |
| with: | |
| mode: sync | |
| target-repo: QuantEcon/lecture-python-programming.zh-cn | |
| target-language: zh-cn | |
| source-language: en | |
| docs-folder: lectures | |
| anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| github-token: ${{ secrets.QUANTECON_SERVICES_PAT }} |