-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: config crowdin action (#2137)
- Loading branch information
1 parent
2ae53a2
commit 7d65006
Showing
3 changed files
with
84 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: "Crowdin Action" | ||
|
||
# **What it does**: Upload strings to crowdin project for translations and creates a PR with updates. | ||
# **Why we have it**: We want to externalize and automate the translations process. | ||
# **Who does it impact**: Everyone collaborating on the project. | ||
# For more info: https://github.com/crowdin/github-action/blob/master/action.yml | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
|
||
workflow_dispatch: | ||
inputs: | ||
baseBranch: | ||
description: "Base branch to create the PR and update the localization strings" | ||
required: true | ||
default: "develop" | ||
type: choice | ||
options: | ||
- "develop" | ||
- "release/candidate" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
synchronize-with-crowdin: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: "Set base branch from input" | ||
env: | ||
INPUT_BASE_BRANCH: ${{github.event.inputs.baseBranch}} | ||
if: "${{ github.event.inputs.baseBranch != '' }}" | ||
run: echo "BASE_BRANCH=$INPUT_BASE_BRANCH" >> "$GITHUB_ENV" | ||
|
||
- name: "Set base branch to default branch" | ||
if: "${{ github.event.inputs.baseBranch == '' }}" | ||
run: echo "BASE_BRANCH=develop" >> "$GITHUB_ENV" | ||
|
||
- name: Crowdin action | ||
uses: crowdin/github-action@v1 | ||
with: | ||
project_id: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
token: ${{ secrets.CROWDIN_API_TOKEN }} | ||
|
||
upload_sources: true | ||
download_translations: true | ||
upload_translations: false | ||
|
||
create_pull_request: true | ||
localization_branch_name: chore/sync-and-update-localization | ||
commit_message: "chore: update localization strings via Crowdin" | ||
pull_request_title: "chore: update localization strings via Crowdin" | ||
pull_request_body: "This PR pulls in the latest localization translations from Crowdin." | ||
github_user_name: "AndroidBob" | ||
github_user_email: "[email protected]" | ||
|
||
pull_request_labels: "l10n, crowdin" | ||
pull_request_assignees: "AndroidBob" | ||
pull_request_team_reviewers: "android" | ||
pull_request_base_branch_name: ${{env.BASE_BRANCH}} | ||
|
||
config: "crowdin.yml" | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
pull_request_title: 'chore: update translation strings via Crowdin' | ||
pull_request_labels: | ||
- crowdin | ||
- l10n | ||
files: | ||
- source: /app/src/main/res/values/strings.xml | ||
translation: /app/src/main/res/values-%two_letters_code%/%original_file_name% | ||
"project_id_env": "CROWDIN_PROJECT_ID" | ||
"api_token_env": "CROWDIN_API_TOKEN" | ||
"base_path": "." | ||
"base_url": "https://api.crowdin.com" | ||
"preserve_hierarchy": true | ||
|
||
files: [ | ||
{ | ||
"source": "/app/src/main/res/values/strings.xml", | ||
"translation": "/app/src/main/res/values-%two_letters_code%/%original_file_name%", | ||
} | ||
] |