Skip to content

Commit

Permalink
TASK-72551: Support download translation from main crowdin branch to … (
Browse files Browse the repository at this point in the history
#3909)

Before this PR, develop branch was not directly synchronised with
crowdin project.
To avoid dealing with daily rebase conflict, this PR allow to have a
github action which will sync with crowdin project's main branch when
needed. The archis will take care to apply it and deal with the
potential rebases conflicts. Its usage will not be frequent and will
allow to get translation up to date
  • Loading branch information
bourasom authored Jun 18, 2024

Verified

This commit was signed with the committer’s verified signature.
1 parent c1e95b6 commit e61bd31
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/download-crowdin-develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Crowdin download Action for develop

on:
workflow_dispatch:

jobs:
download-crowdin-develop:
name: CI Build
uses: exoplatform/swf-scripts/.github/workflows/download-crowdin-develop.yml@master
secrets:
CROWDIN_GITHUB_TOKEN: ${{ secrets.CROWDIN_GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
SWF_GPG_PRIVATE_KEY: ${{ secrets.SWF_GPG_PRIVATE_KEY }}
SWF_GPG_PASSPHRASE: ${{ secrets.SWF_GPG_PASSPHRASE }}

0 comments on commit e61bd31

Please sign in to comment.