File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 61
61
for file in ${CHANGED_FILES}; do
62
62
if [[ $file == *.po ]]; then
63
63
echo "Wrapping $file"
64
- powrap --check $file
64
+ powrap $file
65
65
fi
66
66
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 }}
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 TEST 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