Skip to content

i18n - Download

i18n - Download #1

name: i18n - Download
on:
workflow_dispatch:
# schedule:
# # runs every weekday at 12:30 PM UTC
# - cron: "30 12 * * 1-5"
env:
GITHUB_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_PAT }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_SERVICE_TOKEN }}
CROWDIN_API_URL: "https://freecodecamp.crowdin.com/api/v2/"
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
jobs:
i18n-download-translations:
name: Download
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18.x]
fail-fast: true
steps:
- name: Checkout Source Files
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
with:
token: ${{ secrets.CROWDIN_CAMPERBOT_PAT }}
- name: Generate Crowdin Config
uses: freecodecamp/crowdin-action@main
env:
PLUGIN: "generate-config"
PROJECT_NAME: "mobile"
##### Download Chinese #####
- name: Crowdin Download Chinese Translations
uses: crowdin/github-action@master
# options: https://github.com/crowdin/github-action/blob/master/action.yml
with:
# uploads
upload_sources: false
upload_translations: false
auto_approve_imported: false
import_eq_suggestions: false
# downloads
download_translations: true
download_language: zh-CN
skip_untranslated_strings: false
skip_untranslated_files: false
export_only_approved: true
push_translations: false
# pull-request
create_pull_request: false
# global options
config: "./crowdin-config.yml"
base_url: ${{ secrets.CROWDIN_BASE_URL_FCC }}
# Uncomment below to debug
# dryrun_action: true
##### Download Spanish #####
- name: Crowdin Download Spanish Translations
uses: crowdin/github-action@master
# options: https://github.com/crowdin/github-action/blob/master/action.yml
with:
# uploads
upload_sources: false
upload_translations: false
auto_approve_imported: false
import_eq_suggestions: false
# downloads
download_translations: true
download_language: es-EM
skip_untranslated_strings: false
skip_untranslated_files: false
export_only_approved: true
push_translations: false
# pull-request
create_pull_request: false
# global options
config: "./crowdin-config.yml"
base_url: ${{ secrets.CROWDIN_BASE_URL_FCC }}
# Uncomment below to debug
# dryrun_action: true
# We do not need to run tests because they are run after the PR is created.
# Create Commit
- name: Commit Changes
uses: freecodecamp/crowdin-action@main
env:
PLUGIN: "commit-changes"
GH_USERNAME: "camperbot"
GH_EMAIL: ${{ secrets.ACTIONS_CAMPERBOT_EMAIL }}
GH_BRANCH: "i18n-sync"
GH_MESSAGE: "chore(i18n): processed translations"
# Create PR
- name: Create PR
uses: freecodecamp/crowdin-action@main
env:
PLUGIN: "pull-request"
GH_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_PAT }}
BRANCH: "i18n-sync"
REPOSITORY: "freecodecamp/freecodecamp"
BASE: "main"
TITLE: "chore(i18n): processed translations"
BODY: "This PR was opened auto-magically by Crowdin."
LABELS: "crowdin-sync"
TEAM_REVIEWERS: "i18n"