We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f4abb commit f2d3ed4Copy full SHA for f2d3ed4
1 file changed
…hub/workflows/python-doc-translation.yml …flows/switcher-requirements-progress.yml.github/workflows/python-doc-translation.yml renamed to .github/workflows/switcher-requirements-progress.yml
@@ -63,6 +63,24 @@ jobs:
63
cd translation-repo
64
potodo | tee ../potodo-results.txt
65
66
+ - name: Verify requirements are met
67
+ run: |
68
+ cd translation-repo
69
+ if grep -q "functions.po" ../potodo-results.txt; then
70
+ echo "library/functions.po is not fully translated"
71
+ exit 1
72
+ fi
73
+
74
+ if grep -q "bugs.po" ../potodo-results.txt; then
75
+ echo "bugs.po is not fully translated"
76
77
78
79
+ if ! grep -q "# tutorial (100% done)" ../potodo-results.txt; then
80
+ echo "tutorial/* is not fully translated"
81
82
83
84
- name: Upload potodo results
85
uses: actions/upload-artifact@v4
86
with:
0 commit comments