mirror of
https://github.com/abhinavxd/libredesk.git
synced 2025-11-02 13:03:35 +00:00
48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
name: Crowdin
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
# Only trigger a Crowdin update when the source localization file is
|
|
# updated.
|
|
- 'i18n/en.json'
|
|
# Only watches for changes happening on "main" branch.
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
crowdin:
|
|
runs-on: ubuntu-latest
|
|
# Only run on the original repository, not forks
|
|
if: github.event.repository.fork == false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Crowdin push
|
|
uses: crowdin/github-action@v2
|
|
with:
|
|
# Send source (english) strings to Crowdin.
|
|
upload_sources: true
|
|
# See: https://crowdin.github.io/crowdin-cli/commands
|
|
# /crowdin-upload#options
|
|
upload_sources_args: '--preserve-hierarchy --delete-obsolete'
|
|
# Don't upload or download translations.
|
|
upload_translations: false
|
|
download_translations: false
|
|
# Source language file.
|
|
source: 'i18n/en.json'
|
|
# Translations files.
|
|
translation: 'i18n/%two_letters_code%.json'
|
|
env:
|
|
# Crowdin.com > Project > Tools > API > Project ID.
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
# When creating a personal token in Crowdin, you'll be asked to select
|
|
# the necessary scopes. The basic Crowdin Personal Token scopes are
|
|
# the following:
|
|
# - Projects (List, Get, Create, Edit) -> Read
|
|
# - Translation Status -> Read Only
|
|
# - Source files & strings -> Read and Write
|
|
# - Translations -> Read and Write
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|