mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
67 lines
2 KiB
YAML
67 lines
2 KiB
YAML
name: Sync Crowdin
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: 00 12 * * 1
|
|
push:
|
|
paths:
|
|
- assets/i18n/*.json
|
|
- assets/i18n/*.dart
|
|
- .github/workflows/sync_crowdin.yml
|
|
|
|
jobs:
|
|
sync:
|
|
name: Sync
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
cache: true
|
|
|
|
- name: Sync translations from Crowdin
|
|
uses: crowdin/github-action@v1
|
|
with:
|
|
config: crowdin.yml
|
|
upload_sources: true
|
|
upload_translations: false
|
|
download_translations: true
|
|
localization_branch_name: feat/translations
|
|
create_pull_request: true
|
|
pull_request_title: "chore: Sync translations"
|
|
pull_request_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)"
|
|
pull_request_base_branch_name: "dev"
|
|
commit_message: "chore: Sync translations"
|
|
github_user_name: revanced-bot
|
|
github_user_email: github@revanced.app
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|
|
- name: Remove empty values from JSON
|
|
run: |
|
|
cd assets/i18n
|
|
sudo chmod 777 *.json
|
|
dart nuke.dart >> $GITHUB_STEP_SUMMARY
|
|
|
|
- name: Validation of Translation Strings
|
|
run: |
|
|
dart pub get
|
|
dart run slang
|
|
dart analyze lib/gen/strings.g.dart
|
|
|
|
- name: Commit translations
|
|
run: |
|
|
git config user.name revanced-bot
|
|
git config user.email github@revanced.app
|
|
sudo chown -R $USER:$USER .git
|
|
git add assets/i18n/*.json
|
|
git commit -m "chore: Remove empty values from JSON" assets/i18n/*.json
|
|
git push origin HEAD:feat/translations
|