mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* AAE-24008 Crowdin implementation * removed new line from pull-from-crowdin.yml Co-authored-by: Anahide Tchertchian <608958+atchertchian@users.noreply.github.com> --------- Co-authored-by: Anahide Tchertchian <608958+atchertchian@users.noreply.github.com>
24 lines
856 B
YAML
24 lines
856 B
YAML
name: Pull Translations from Crowdin
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
jobs:
|
|
pull-from-crowdin:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
|
- name: Pull translations from Crowdin
|
|
uses: crowdin/github-action@6ed209d411599a981ccb978df3be9dc9b8a81699 # v2.1.1
|
|
with:
|
|
upload_sources: false
|
|
download_translations: true
|
|
create_pull_request: true
|
|
localization_branch_name: automated-translations-update
|
|
pull_request_title: "GH auto: Automated Update of Translations from Crowdin"
|
|
pull_request_base_branch_name: develop
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TRANSLATIONS_TOKEN }}
|