Simplify Crowdin translation synchronization workflow#79
Merged
Conversation
This removes the dedicated l10n branch handling previously used during translation synchronization. Translation updates are now pushed directly to the branch checked out by the workflow instead of being force-pushed to l10n. Also removes the obsolete downloadTranslationsBranch workflow environment variable, which is no longer needed. Additionally, translation synchronization now performs a single final git push after all commits have been created, avoiding intermediate repository states during workflow execution.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Simplify Crowdin translation synchronization workflow
This PR simplifies the translation synchronization workflow used by Crowdin integration.
Changes included
l10nbranch handling previously used during translation synchronization.downloadTranslationsBranchworkflow environment variable.git pushoperations with a single final push performed after all commits have been created.Why this change is needed
The previous implementation pushed the final translation synchronization commit to a dedicated
l10nbranch instead of the active workflow branch.As a result:
This new approach keeps the complete synchronization process on the current workflow branch and avoids intermediate repository states by performing a single final
git push.Expected benefits
This removes the dedicated l10n branch handling previously used during translation synchronization.
Translation updates are now pushed directly to the branch checked out by the workflow instead of being force-pushed to l10n.
Also removes the obsolete downloadTranslationsBranch workflow environment variable, which is no longer needed.
Additionally, translation synchronization now performs a single final git push after all commits have been created, avoiding intermediate repository states during workflow execution.