We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e9fae5 commit 4c575d0Copy full SHA for 4c575d0
1 file changed
.github/workflows/template_update.yml
@@ -102,8 +102,8 @@ jobs:
102
if [ ! -s update.patch ]; then
103
echo "ℹ️ No template diffs; only SHA bump will occur."
104
else
105
- if ! git apply --3way update.patch; then
106
- echo "::error ::Merge conflicts detected; aborting."
+ if ! patch -p1 < update.patch; then
+ echo "::error ::Patch could not be applied; possible conflict or missing files."
107
exit 1
108
fi
109
git add -A
0 commit comments