Replies: 1 comment 10 replies
-
|
Hi @amannn! I wanted to make this guide as simple as possible, so pushing to The described strategy with the The However, to automatically delete branches from Crowdin, some additional setup is indeed required. In this case, you can use the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey @andrii-bodnar, I'm currently trying out the AI localization workflow!
So far, this is working for me, but one issue I see with this workflow is that translations are only generated on a push to
main. This way, you don't get a preview of translations while working on a feature branch, and if a push tomainmeans a deployment, you'll deploy with missing translations while a PR with translations is being added.So the adjustments I'm trying to make are:
create_pull_requesttofalseandlocalization_branch_nameto${{ github.ref_name }}to get translations directly on feature branchescrowdin_branch_nameto${{ github.ref_name }}as well, so translation changes in feature branches don't interfere with production translationsThis seems to be generally working for me, but the
crowdin_branch_namesetting seems to set up a Crowdin branch from scratch, therefore AI translation to target locales completely regenerates translations instead of using what's already available in the production translation set.It seems like
crowdin branch cloneis what I'm looking for, but I'm unsure if this can be integrated with the Crowdin GitHub action.Another aspect to consider is that I want Crowdin branches to be deleted once the branch in my VCS is deleted, I guess that would require another manual step …
Can you provide some guidance here on whether this workflow is possible currently with the Crowdin GitHub action? Or should users be encouraged to use the CLI manually once branches become necessary? The former would definitely be preferred from my perspective.
Many thanks for your help!
My current workflow file
Beta Was this translation helpful? Give feedback.
All reactions