We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2486486 commit b63f385Copy full SHA for b63f385
1 file changed
tools/patch.sh
@@ -81,6 +81,10 @@ done
81
echo "All patches processed!"
82
# commit the changes
83
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
88
git add .
89
git commit -m "Applied patches from ${PATCHES_DIR}"
90
if [ $? -ne 0 ]; then
0 commit comments