ci: update workflow #23
Workflow file for this run
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
name: Crowdin Action | |
on: | |
workflow_dispatch: | |
push: | |
branches: [feat/i10n] | |
jobs: | |
synchronize-with-crowdin: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: crowdin action | |
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(i18n): Sync translations" | |
pull_request_body: "Sync translations from [Crowdin/ReVanced](https://crowdin.com/project/revanced)" | |
pull_request_base_branch_name: "feat/i10n" | |
commit_message: "chore(i18n): Sync translations" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
- name: Remove empty values from JSON | |
run: | | |
cd assets/i18n | |
dart nuke.dart | |
- name: Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: "chore: remove empty values from JSON" | |