Skip to content

Commit ac74622

Browse files
committed
fix(entrypoint): add git user and email
1 parent 5e81ac0 commit ac74622

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

entrypoint.sh

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ else
1717
pip install commitizen
1818
fi
1919

20+
echo "Configuring git user and email..."
21+
git config --local user.email "[email protected]"
22+
git config --local user.name "GitHub Action"
23+
2024
echo "Runnung cz..."
2125
if ! $INPUT_DRY_RUN; then
2226
cz bump --yes --changelog

0 commit comments

Comments
 (0)