GitHub Action
Pull from Lokalise
GitHub action to download translation files from Lokalise TMS to your GitHub repository in the form of a pull request.
Step-by-step tutorial covering the usage of this action is available on Lokalise Developer Hub. To upload translation files from GitHub to Lokalise, use the lokalise-push-action.
Use this action in the following way:
name: Demo pull with tags
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Pull from Lokalise
uses: lokalise/[email protected]
with:
api_token: ${{ secrets.LOKALISE_API_TOKEN }}
project_id: LOKALISE_PROJECT_ID
translations_path: |
TRANSLATIONS_PATH1
TRANSLATIONS_PATH2
file_format: FILE_FORMAT
additional_params: ADDITIONAL_CLI_PARAMS
Before running this action, ensure that your translation keys on Lokalise are correctly assigned with appropriate filenames and tags.
If you are running this action from the hub
branch on GitHub, the action will download only the keys that have the hub
tag assigned. If no such keys are found, the action will halt execution.
If you specify locales
as the translations_path
, your keys must include filenames that align with this structure, such as:
locales/%LANG_ISO%.json
locales/%LANG_ISO%/main.xml
Here:
%LANG_ISO%
will be replaced with the language code (e.g.,en
,fr
, etc.).
If the filenames do not include the correct directory prefix (like locales/
), the action will fail to compare the downloaded files with the existing files in your translations_path
. In this case, the workflow logs will show the message: "No changes detected in translation files.".
To avoid this, double-check that your Lokalise filenames match the expected directory structure.
You'll need to provide some parameters for the action. These can be set as environment variables, secrets, or passed directly. Refer to the General setup section for detailed instructions.
api_token
— Lokalise API token with read/write permissions.project_id
— Your Lokalise project ID.translations_path
— One or more paths to your translation files. For example, if your translations are stored in thelocales
folder at the project root, uselocales
. Defaults tolocales
.file_format
— The format of your translation files, such asjson
for JSON files. Defaults tojson
.base_lang
— Your project base language, such asen
for English. Defaults toen
.
additional_params
— Extra parameters to pass to the Lokalise CLI when pulling files. For example, you can use--indentation 2sp
to manage indentation. Multiple CLI arguments can be added, such as--indentation 2sp --placeholder-format icu
. Defaults to an empty string.temp_branch_prefix
— A prefix for the temporary branch used to create the pull request. For example, usinglok
will result in a branch name starting withlok
. Defaults tolok
.always_pull_base
— By default, changes in the base language translation files (defined by thebase_lang
option) are ignored when checking for updates. Set this option totrue
to include changes in the base language translations in the pull request. Defaults tofalse
.flat_naming
— Use flat naming convention. Set totrue
if your translation files follow a flat naming pattern likelocales/en.json
instead oflocales/en/file.json
. Defaults tofalse
.skip_include_tags
— Skip setting the--include-tags
argument during download. This will download all translation keys for the specified format, regardless of tags. You can also provide custom filtering options viaadditional_params
, for example--include-tags staging,dev
.max_retries
— Maximum number of retries on rate limit errors (HTTP 429). Defaults to3
.sleep_on_retry
— Number of seconds to sleep before retrying on rate limit errors. Defaults to1
.download_timeout
— Timeout for the download operation, in seconds. Defaults to120
.
- Go to your repository's Settings.
- Navigate to Actions > General.
- Under Workflow permissions, set the permissions to Read and write permissions.
- Enable Allow GitHub Actions to create and approve pull requests on the same page (under "Choose whether GitHub Actions can create pull requests or submit approving pull request reviews").
When triggered, this action follows these steps:
-
Install Lokalise CLIv2:
- Ensures that the required Lokalise CLI is available for subsequent operations.
-
Download translation files:
- Retrieves translation files for all languages from the specified Lokalise project.
- The downloaded keys are filtered by the tag corresponding to the triggering branch. For example, if the branch is named
lokalise-hub
, only keys tagged withlokalise-hub
in Lokalise will be included in the download bundle.
-
Detect changes:
- Compares the downloaded translation files against the repository’s existing files to detect any updates or modifications.
-
Create a pull request:
- If changes are detected, the action creates a pull request from a temporary branch to the triggering branch.
- The temporary branch name is constructed using the prefix specified in the
temp_branch_prefix
parameter.
For more information on assumptions, refer to the Assumptions and defaults section.
By default, the following command-line parameters are set when downloading files from Lokalise:
--token
— Derived from theapi_token
parameter.--project-id
— Derived from theproject_id
parameter.--format
— Derived from thefile_format
parameter.--original-filenames
— Set totrue
.--directory-prefix
— Set to/
.--include-tags
— Set to the branch name that triggered the workflow.
Apache license version 2