Skip to content

Commit b63f385

Browse files
committed
fix: patch script
1 parent 2486486 commit b63f385

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tools/patch.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ done
8181
echo "All patches processed!"
8282
# commit the changes
8383
cd "$PRIMJS_DIR" || exit 1
84+
if [ "$GITHUB_ACTIONS" = "true" ]; then
85+
git config user.email "ci@github.com"
86+
git config user.name "Github Actions"
87+
fi
8488
git add .
8589
git commit -m "Applied patches from ${PATCHES_DIR}"
8690
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)