Skip to content

Commit 35c05b4

Browse files
committed
Test CI
1 parent e8b1dd0 commit 35c05b4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/wrap.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
# Detect changed files
4242
- 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
4444

4545
# Display changed files
4646
- name: Display changed files
@@ -56,7 +56,9 @@ jobs:
5656
else
5757
echo "Wrapping files: ${CHANGED_FILES}"
5858
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
6163
done
6264
fi

library/stdtypes.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgstr ""
2020
#: library/stdtypes.rst:8
2121
msgid "Built-in Types"
2222
msgstr ""
23-
"TEST"
23+
"TEST TEST"
2424

2525
#: library/stdtypes.rst:10
2626
msgid ""

0 commit comments

Comments
 (0)