generated from freeCodeCamp/template
-
-
Notifications
You must be signed in to change notification settings - Fork 115
102 lines (88 loc) · 3.48 KB
/
crowdin-download.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Crowdin Download
on:
workflow_dispatch:
schedule:
# runs every day at 12:00 noon UTC
- cron: '0 12 * * *'
jobs:
i18n-download:
name: Download
runs-on: ubuntu-20.04
steps:
- name: Checkout Source Files
uses: actions/checkout@v2
with:
token: ${{ secrets.CROWDIN_CAMPERBOT_PAT }}
- name: Generate Crowdin Config
uses: freecodecamp/crowdin-action@main
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_SERVICE_TOKEN }}
CROWDIN_API_URL: "https://freecodecamp.crowdin.com/api/v2/"
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID_RPG }}
PLUGIN: "generate-config"
PROJECT_NAME: "rpg"
##### 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_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
env:
GITHUB_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_PAT }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID_RPG }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_SERVICE_TOKEN }}
# Convert Simplified Chinese to Traditional #
- name: Convert Chinese
uses: freecodecamp/crowdin-action@main
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_SERVICE_TOKEN }}
CROWDIN_API_URL: "https://freecodecamp.crowdin.com/api/v2/"
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID_RPG }}
PLUGIN: "convert-chinese"
FILE_PATHS: '["/game/tl/chinese/"]'
# Create Commit
- name: Commit Changes
uses: freecodecamp/crowdin-action@main
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_SERVICE_TOKEN }}
CROWDIN_API_URL: "https://freecodecamp.crowdin.com/api/v2/"
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID_RPG }}
PLUGIN: "commit-changes"
GH_USERNAME: "camperbot"
GH_EMAIL: ${{ secrets.ACTIONS_CAMPERBOT_EMAIL }}
GH_BRANCH: "i18n-sync"
GH_MESSAGE: "chore(i18n): processed translations"
# Generate PR #
# All languages should go ABOVE this. #
- name: Create PR
uses: freecodecamp/crowdin-action@main
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_SERVICE_TOKEN }}
CROWDIN_API_URL: "https://freecodecamp.crowdin.com/api/v2/"
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID_RPG }}
PLUGIN: "pull-request"
GH_TOKEN: ${{ secrets.CROWDIN_CAMPERBOT_PAT }}
BRANCH: "i18n-sync"
REPOSITORY: "freecodecamp/learntocoderpg"
BASE: "main"
TITLE: "chore(i18n): processed translations"
BODY: "This PR was opened auto-magically by Crowdin."
LABELS: "crowdin-sync"
TEAM_REVIEWERS: "i18n"