Skip to content

Commit 0de8c18

Browse files
committed
Test CI
1 parent 251810e commit 0de8c18

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

.github/workflows/wrap.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,21 @@ jobs:
6161
for file in ${CHANGED_FILES}; do
6262
if [[ $file == *.po ]]; then
6363
echo "Wrapping $file"
64-
powrap --check $file
64+
powrap $file
6565
fi
6666
done
67-
fi
67+
fi
68+
69+
# Commit changes
70+
- name: Commit files
71+
run: |
72+
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
73+
git config --local user.name "github-actions[bot]"
74+
git commit -m "Wrap files" -a
75+
76+
# Push changes
77+
- name: Push changes
78+
uses: ad-m/github-push-action@master
79+
with:
80+
github_token: ${{ secrets.GITHUB_TOKEN }}
81+
branch: ${{ github.ref }}

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 TEST TEST"
23+
"TEST TEST"
2424

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

0 commit comments

Comments
 (0)