-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5404c2
commit cf3618e
Showing
7 changed files
with
76 additions
and
12 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,42 @@ | ||
name: Sync Crowdin | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
paths: | ||
- 'app/src/main/res/values/strings.xml' | ||
- '.github/workflows/crowdin.yml' | ||
schedule: | ||
- cron: "0 17 * * 6" # "At 17:00 on Saturday." | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync-crowdin: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Crowdin | ||
uses: crowdin/[email protected] | ||
with: | ||
config: crowdin.yml | ||
upload_translations: true | ||
download_translations: true | ||
push_translations: true | ||
create_pull_request: false | ||
localization_branch_name: l10n | ||
commit_message: 'chore(i18n): sync translations' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_ID }} | ||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN }} | ||
|
||
- name: Merge | ||
run: | | ||
sudo chmod -R ugo+rwX . | ||
git checkout main | ||
git add * | ||
git merge l10n | ||
git push |
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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
project_id_env: CROWDIN_PROJECT_ID | ||
api_token_env: CROWDIN_PERSONAL_TOKEN | ||
|
||
preserve_hierarchy: true | ||
files: | ||
- source: app/src/main/res/values/strings.xml | ||
translation: app/src/main/res/values-%android_code%/strings.xml |