forked from qgis/QGIS-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (58 loc) · 2.14 KB
/
pofiles.yml
File metadata and controls
71 lines (58 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Update English PO files for translation
on:
push:
branches:
- release_3.44
paths:
- 'docs/**'
- 'themes/**/*.html'
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@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
with:
disable-sudo-and-containers: true
egress-policy: block
allowed-endpoints: >
files.pythonhosted.org:443
github.com:443
pypi.org:443
qgis.org:443
- name: checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: release_3.44
- name: Set up Python 3.12
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r REQUIREMENTS.txt
- 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/ -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@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.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!"