Sample Workflows

All Python documentation translation repositories are hosted on GitHub. GitHub provides a very useful CI system, GitHub Actions, which runs workflows. Workflows are particularly useful for testing projects, in translation repos they can be used to update translations from Transifex, lint translated files, and test build the translated documentation.

This repository provides three sample workflows: a Linting workflow, a Test Build workflow, and a workflow for pulling translations from Transifex. They can be found in the sample-workflows directory and explanations of how they work and what you need to do to set them up can be found below.

Running Workflows

To run on of our provided workflows (or any workflow), put the file in the .github/workflows folder and it will run automatically depending on how it is configured.

General Overview

name: Linting Workflow

The name can be freely configured and will be displayed in the “Actions” tab.

on:
   schedule:
      - cron: '0 0 * * *'

Using cron, the frequency of the workflow runs can be set. In the sample workflows it is configured to '0 0 * * *', meaning it will run once daily. See crontab.guru for a simple cron editor.

on:
   ...
   push:
      branches:
         - '*'
   workflow_dispatch:

The workflow can also be set to run under different conditions, in the case of the sample workflows it is set to run on a push to any branch, and can be run manually due to the workflow_dispatch option.

jobs:

All jobs or sections under jobs: will be run. The sample workflows can be merged into one by combining all of their jobs. (Note: there must only be one jobs:)

In the workflows, replace all instances of XX with your IETF language tag, as described in PEP 545. These tools, however, require and underscore (_) rather than a dash (-); for example pl or pt_BR.

Transifex Pull Workflow

How to configure the Transifex Pull Workflow.

This workflow automatically pulls updated translations from Transifex, commits them to the repository, and pushes them back to the relevant branch, if significant changes are detected.

Ensure the TX_TOKEN secret is configured in your repository with your Transifex API token. For generating your API key, see this Transifex article, for setting up secrets, see this guide.

matrix:
  version: [ 3.14 ]

Set the version list to the branches for which translations should be updated.

- name: Filter files
  run: |
    ! git diff -I'^"POT-Creation-Date: ' \
               -I'^"Language-Team: ' \
               -I'^# ' -I'^"Last-Translator: ' \
               --exit-code \
      && echo "SIGNIFICANT_CHANGES=1" >> $GITHUB_ENV || exit 0

This step detects whether the changes are significant by ignoring changes to the file header. A commit and push only occur if meaningful changes are found, these filters can be modified to suit.

Test Build Workflow

How to configure the Test Build Workflow.

matrix:
   version: [ 3.14 ]
   format: [ html, latex ]

Set version to the branches in your translation repository that you want to be built, for example: version: [ 3.14, 3.13, 3.12 ], note that this has to be changed in both matrix’s in the workflow. The format can be modified to run for just html if that is preferred.

- uses: actions/setup-python@master
   with:
   python-version: 3.12  # pin for Sphinx 3.4.3 for 3.10

The python-version can be unpinned if no branches older than 3.11 are set in the version list.

output-pdf:

Remove the output-pdf job if you do not want pdf output to be built. The section also has to be removed if latex is not in the format list.

The workflow uses the actions/upload-artifact@master tool which allows for the generated builds to be downloaded. In a run in the “Actions” tab they can be found in the “Artifacts” section.

Linting Workflow

How to configure the po linting workflow. This workflow will lint all po files on your branch using sphinx-lint.

matrix:
   version: [ 3.14 ]

Set the version list to the versions you have available and want the linting workflow to be run on.