File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 40
40
41
41
# Detect changed files
42
42
- name : Detect changed files
43
- run : echo "CHANGED_FILES=$(git diff -- {.,**}/*.po -- name-only ${{ github.event.before }}..${{ github.event.after }})" >> $GITHUB_ENV
43
+ run : echo "CHANGED_FILES=$(git diff --name-only ${{ github.event.before }}..${{ github.event.after }})" >> $GITHUB_ENV
44
44
45
45
# Display changed files
46
46
- name : Display changed files
56
56
else
57
57
echo "Wrapping files: ${CHANGED_FILES}"
58
58
for file in ${CHANGED_FILES}; do
59
- echo "Wrapping $file"
60
- powrap $file
59
+ if [[ $file == *.po ]]; then
60
+ echo "Wrapping $file"
61
+ powrap $file
62
+ fi
61
63
done
62
64
fi
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ msgstr ""
20
20
#: library/stdtypes.rst:8
21
21
msgid "Built-in Types"
22
22
msgstr ""
23
- "TEST"
23
+ "TEST TEST "
24
24
25
25
#: library/stdtypes.rst:10
26
26
msgid ""
You can’t perform that action at this time.
0 commit comments