Update from Crowdin #12
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: Update Crowdin strings bi-directionally | |
run-name: Update from Crowdin | |
on: | |
schedule: | |
- cron: "30 */3 * * *" | |
push: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
crowdin-translations-progress: | |
name: Crowdin translations progress updater | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Generate Crowdin translations progress markdown | |
uses: benjaminjonard/[email protected] | |
with: | |
languages_per_row: 10 | |
minimum_completion_percent: 80 | |
file: README.md # Maybe change later? | |
env: | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
- name: Push changes | |
uses: actions-go/push@v1 | |
with: | |
author-name: Actionsbot | |
author-email: [email protected] | |
commit-message: "Update Crowdin translation progress badge" | |
remote: origin | |
update-from-crowdin: | |
name: Update strings from Crowdin | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Grab strings from Crowdin | |
uses: crowdin/[email protected] | |
with: # This part can be a little fragile, be careful! | |
upload_sources: true | |
upload_translations: false | |
upload_language: en | |
download_sources: false | |
download_translations: true | |
skip_untranslated_strings: false | |
source: i18n/lang/en-US.json | |
translation: i18n/lang/%locale%.json | |
export_only_approved: false | |
localization_branch_name: i18n-crowdin-translations | |
create_pull_request: true | |
pull_request_title: (Crowdin Action) New translation strings | |
pull_request_body: New translated strings are now available! | |
pull_request_labels: crowdin | |
pull_request_base_branch_name: "main" | |
github_user_name: Crowdin Bot (Actions) | |
github_user_email: [email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |