Border line style changed from pen to line #385
This file contains 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
name: Update English PO files for translation | |
on: | |
push: | |
branches: | |
- release_3.34 | |
paths: | |
- 'docs/**' | |
workflow_dispatch: | |
permissions: # added using https://github.com/step-security/secure-repo | |
contents: read | |
jobs: | |
prepare_translation: | |
permissions: | |
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo | |
if: github.repository_owner == 'qgis' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- name: checkout | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
ref: release_3.34 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install sphinx sphinx-intl sphinxext.rediraffe pyYAML sphinx_togglebutton sphinx_copybutton | |
- name: Generate English PO files | |
id: "generate-po-files" | |
run: | | |
make gettext | |
sphinx-intl update -p build/gettext -l en | |
# Remove obsolete strings from the generated *.po files | |
find locale/en/LC_MESSAGES/docs/ -type f -name '*.po' -exec sed -i '/^#~ /,/^$/d' {} \; | |
- name: Commit the changes in the PO files | |
id: "auto-commit-action" | |
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5.0.0 | |
with: | |
commit_message: Update English PO files | |
- name: "Inform that changes have been made" | |
if: steps.auto-commit-action.outputs.changes_detected == 'true' | |
run: echo "Changes committed!" | |
- name: "Inform that no changes were performed" | |
if: steps.auto-commit-action.outputs.changes_detected == 'false' | |
run: echo "No Changes detected!" |